2011-01-27 17:25:36 -05:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
#
|
|
|
|
# Regression test for moving a con outside of a floating con when there are no
|
|
|
|
# tiling cons on a workspace
|
|
|
|
#
|
2011-03-09 14:25:17 -05:00
|
|
|
use i3test;
|
2011-01-27 17:25:36 -05:00
|
|
|
|
2011-11-23 06:57:13 -05:00
|
|
|
sub sync_cmd {
|
|
|
|
cmd @_;
|
|
|
|
sync_with_i3;
|
|
|
|
}
|
|
|
|
|
2011-03-09 14:25:17 -05:00
|
|
|
my $tmp = fresh_workspace;
|
2011-01-27 17:25:36 -05:00
|
|
|
|
2011-11-21 18:47:32 -05:00
|
|
|
my $left = open_window;
|
|
|
|
my $mid = open_window;
|
|
|
|
my $right = open_window;
|
2011-01-27 17:25:36 -05:00
|
|
|
|
|
|
|
# go to workspace level
|
2011-11-23 06:57:13 -05:00
|
|
|
sync_cmd 'level up';
|
2011-01-27 17:25:36 -05:00
|
|
|
|
|
|
|
# make it floating
|
2011-11-23 06:57:13 -05:00
|
|
|
sync_cmd 'mode toggle';
|
2011-01-27 17:25:36 -05:00
|
|
|
|
|
|
|
# move the con outside the floating con
|
2011-11-23 06:57:13 -05:00
|
|
|
sync_cmd 'move up';
|
2011-01-27 17:25:36 -05:00
|
|
|
|
2011-01-27 19:21:38 -05:00
|
|
|
does_i3_live;
|
2011-02-01 12:18:07 -05:00
|
|
|
|
|
|
|
# move another con outside
|
2011-11-23 06:57:13 -05:00
|
|
|
sync_cmd '[id="' . $mid->id . '"] focus';
|
|
|
|
sync_cmd 'move up';
|
2011-02-01 12:18:07 -05:00
|
|
|
|
|
|
|
does_i3_live;
|
2011-03-09 14:25:17 -05:00
|
|
|
|
|
|
|
done_testing;
|