Fix how layout delegation is tested (UAT)

This commit is contained in:
Thibault Jouan 2015-04-28 09:20:42 +00:00
parent daa028e794
commit ace86cf0e3

View File

@ -1,24 +1,23 @@
Feature: `layout_*' action keywords Feature: `layout_*' action keywords
Background: Scenario: delegates messages matching `layout_*' to `layout_handle_*'
Given a file named layout.rb with: Given a file named layout.rb with:
""" """
class Layout class Layout
def register _; end def register _; end
def handle_some_action arg def handle_some_action arg
puts arg puts "testing_layout_action_#{arg}"
end end
end end
""" """
And a run control file with:
Scenario: delegates messages matching `layout_*' to `layout_handle_*'
Given uhwm is running with this run control file:
""" """
key(:f) { layout_some_action :testing_some_action } key(:f) { puts "CALL!"; layout_some_action 'with_arg' }
""" """
And uhwm is running with options -v -r./layout.rb -l Layout
When I press the alt+f keys When I press the alt+f keys
Then the output must contain ":testing_some_action" Then the output must contain "testing_layout_action_with_arg"
Scenario: logs an error about unimplemented messages Scenario: logs an error about unimplemented messages
Given uhwm is running with this run control file: Given uhwm is running with this run control file: