gri3-wm/testcases/t/47-regress-floatingmove.t

38 lines
643 B
Perl
Raw Normal View History

#!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
#
use X11::XCB qw(:all);
use Time::HiRes qw(sleep);
use i3test tests => 2;
BEGIN {
use_ok('X11::XCB::Window');
}
my $x = X11::XCB::Connection->new;
my $tmp = get_unused_workspace;
cmd "workspace $tmp";
my $left = open_standard_window($x);
sleep 0.25;
my $mid = open_standard_window($x);
sleep 0.25;
# go to workspace level
cmd 'level up';
sleep 0.25;
# make it floating
cmd 'mode toggle';
sleep 0.25;
# move the con outside the floating con
cmd 'move before v';
sleep 0.25;
does_i3_live;