Merge branch 'tests-focus-parent-child'

next
Michael Stapelberg 2012-05-28 23:37:22 +02:00
commit 24b1fcfd1a
4 changed files with 8 additions and 8 deletions

View File

@ -22,10 +22,10 @@ my ($nodes, $focus) = get_ws_content($tmp);
is($nodes->[0]->{focused}, 0, 'split container not focused');
# focus the split container
cmd 'level up';
cmd 'focus parent';
($nodes, $focus) = get_ws_content($tmp);
my $split = $focus->[0];
cmd 'level down';
cmd 'focus child';
$second = open_empty_con($i3);
@ -60,10 +60,10 @@ cmd 'split v';
is($nodes->[0]->{focused}, 0, 'split container not focused');
# focus the split container
cmd 'level up';
cmd 'focus parent';
($nodes, $focus) = get_ws_content($tmp);
$split = $focus->[0];
cmd 'level down';
cmd 'focus child';
$second = open_empty_con($i3);

View File

@ -18,7 +18,7 @@ my $mid = open_window;
my $right = open_window;
# go to workspace level
sync_cmd 'level up';
sync_cmd 'focus parent';
# make it floating
sync_cmd 'mode toggle';

View File

@ -9,8 +9,8 @@ use i3test;
fresh_workspace;
cmd 'open';
cmd 'level up';
cmd 'level up';
cmd 'focus parent';
cmd 'focus parent';
cmd 'mode toggle';
does_i3_live;

View File

@ -30,7 +30,7 @@ is($nodes->[0]->{fullscreen_mode}, 1, 'client fullscreen now');
#####################################################################
# send level up, try to un-fullscreen
#####################################################################
cmd 'level up';
cmd 'focus parent';
cmd 'fullscreen';
$nodes = get_ws_content $tmp;