36 lines
1.0 KiB
Gherkin
36 lines
1.0 KiB
Gherkin
Feature: layout protocol
|
|
|
|
Background:
|
|
Given a file named layout.rb with:
|
|
"""
|
|
class Layout
|
|
def register display
|
|
puts display
|
|
end
|
|
|
|
def << client
|
|
puts "testing_#<<_#{client.name}"
|
|
client.show
|
|
end
|
|
|
|
def remove client
|
|
puts "testing_#remove_#{client.name}"
|
|
end
|
|
end
|
|
"""
|
|
|
|
Scenario: tells the layout to register with #register message
|
|
When I run uhwm with option -r./layout -l Layout
|
|
Then the output must contain current display
|
|
|
|
Scenario: tells the layout to manage a client with #<< message
|
|
Given uhwm is running with options -v -r./layout -l Layout
|
|
When a window requests to be mapped
|
|
Then the output must contain "testing_#<<_XClient/default"
|
|
|
|
Scenario: tells the layout to unmanage a client with #remove message
|
|
Given uhwm is running with options -v -r./layout -l Layout
|
|
And a window is managed
|
|
When the window is unmapped
|
|
Then the output must contain "testing_#remove_XClient/default"
|