]> git.sur5r.net Git - i3/i3/blobdiff - testcases/t/005-floating.t
Merge branch 'master' into next
[i3/i3] / testcases / t / 005-floating.t
index 9ac45627aa39446f057a0e422f75b8c96eae2c2c..2a0d91025592dfe01a10733ddad1b655f2c36008 100644 (file)
@@ -1,5 +1,18 @@
 #!perl
 # vim:ts=4:sw=4:expandtab
+#
+# Please read the following documents before working on tests:
+# • http://build.i3wm.org/docs/testsuite.html
+#   (or docs/testsuite)
+#
+# • http://build.i3wm.org/docs/lib-i3test.html
+#   (alternatively: perldoc ./testcases/lib/i3test.pm)
+#
+# • http://build.i3wm.org/docs/ipc.html
+#   (or docs/ipc)
+#
+# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
+#   (unless you are already familiar with Perl)
 
 use i3test;
 
@@ -18,7 +31,7 @@ ok($absolute->{x} != 0 && $absolute->{y} != 0, 'i3 did not map it to (0x0)');
 
 $window->unmap;
 
-$window = open_floating_window(rect => [ 1, 1, 80, 90 ]);
+$window = open_floating_window(rect => [ 20, 20, 80, 90 ]);
 
 isa_ok($window, 'X11::XCB::Window');
 
@@ -27,10 +40,8 @@ isa_ok($window, 'X11::XCB::Window');
 cmp_ok($absolute->{width}, '==', 80, "i3 let the width at 80");
 cmp_ok($absolute->{height}, '==', 90, "i3 let the height at 90");
 
-# We need to compare the position with decorations due to the way
-# we do decoration rendering (on the parent frame) in the tree branch
-cmp_ok($top->{x}, '==', 1, 'i3 mapped it to x=1');
-cmp_ok($top->{y}, '==', 19, 'i3 mapped it to y=18');
+cmp_ok($top->{x}, '==', 20, 'i3 mapped it to x=20');
+cmp_ok($top->{y}, '==', 20, 'i3 mapped it to y=20');
 
 $window->unmap;