Add testcase for checking if the focus stack is correct when mapping/unmapping floating clients

This commit is contained in:
Michael Stapelberg
2009-08-05 21:54:24 +02:00
parent d9f8e2fa98
commit aaca2346d8
2 changed files with 68 additions and 0 deletions

View File

@ -40,6 +40,8 @@ ok($absolute->{height} >= 50, "i3 raised the height to 50");
ok($absolute->{x} != 0 && $absolute->{y} != 0, "i3 did not map it to (0x0)");
$window->unmap;
$original_rect = X11::XCB::Rect->new(x => 1, y => 1, width => 80, height => 90);
$window = X11::XCB::Window->new(
@ -63,4 +65,6 @@ ok($absolute->{height} == 90, "i3 let the height at 90");
ok($top->{x} == 1 && $top->{y} == 1, "i3 mapped it to (1,1)");
$window->unmap;
diag( "Testing i3, Perl $], $^X" );