uh-wm/features/steps/x_steps.rb
Thibault Jouan 82a4161cc2 Improve UAT on layout
* Move cucumber features regarding the layout protocol in
  layout/protocol;
* Add new cucumber features to test uh-layout integration in uh-wm, at
  least simple mapping and focus behavior;
* Add new acceptance testing helpers
2015-04-18 19:33:47 +00:00

21 lines
433 B
Ruby

When /^I press the ([^ ]+) keys?$/ do |keys|
x_key keys
end
When /^a window requests to be mapped$/ do
x_window_map
end
Then /^it must connect to X display$/ do
uhwm_wait_output 'Connected to'
expect(x_socket_check uhwm_pid).to be true
end
Then /^the window must be mapped$/ do
expect(x_window_map_state).to eq 'IsViewable'
end
Then /^the window must be focused$/ do
expect(x_focused_window_id).to eq x_window_id
end