]> git.sur5r.net Git - i3/i3/blob - testcases/t/001-tile.t
Merge branch 'master' into next
[i3/i3] / testcases / t / 001-tile.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3
4 use i3test;
5
6 my $original_rect = X11::XCB::Rect->new(x => 0, y => 0, width => 30, height => 30);
7
8 my $window = open_window(rect => $original_rect, dont_map => 1);
9 isa_ok($window, 'X11::XCB::Window');
10
11 is_deeply($window->rect, $original_rect, "rect unmodified before mapping");
12
13 $window->map;
14 wait_for_map $window;
15
16 my $new_rect = $window->rect;
17 ok(!eq_hash($new_rect, $original_rect), "Window got repositioned");
18
19 done_testing;