Ensure only one client is managed for given window

This commit is contained in:
Thibault Jouan
2015-04-19 05:11:01 +00:00
parent 036ca1f989
commit bdbeca399a
7 changed files with 40 additions and 3 deletions

View File

@@ -27,6 +27,11 @@ When /^I tell uhwm to quit$/ do
x_key 'alt+shift+q'
end
When /^I quit uhwm$/ do
x_key 'alt+shift+q'
assert_exit_status 0
end
Then /^the exit status must be (\d+)$/ do |exit_status|
assert_exit_status exit_status.to_i
end