t/506-focus-right: also verify that focus up/down is a no-op (Thanks swh)

next
Michael Stapelberg 2012-09-22 17:30:44 +02:00
parent 19883108a9
commit 11378b7012
1 changed files with 6 additions and 1 deletions

View File

@ -57,12 +57,17 @@ sub test_focus_left_right {
is($x->input_focus, $right_win->id, 'right window focused (wrapping)');
############################################################################
# Ensure that moving down from S0 doesnt crash i3.
# Ensure that moving down/up from S0 doesnt crash i3 and is a no-op.
############################################################################
my $second = fresh_workspace(output => 1);
my $third_win = open_window;
cmd "focus output down";
is($x->input_focus, $third_win->id, 'right window still focused');
cmd "focus output up";
is($x->input_focus, $third_win->id, 'right window still focused');
does_i3_live;