]> git.sur5r.net Git - i3/i3/commitdiff
i3test: fix get_focused() docs (Thanks knopwob)
authorMichael Stapelberg <michael@stapelberg.de>
Thu, 7 Feb 2013 14:57:15 +0000 (15:57 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 7 Feb 2013 14:57:15 +0000 (15:57 +0100)
testcases/lib/i3test.pm

index 12f81ea162106189ae52b24fdb81ed66b9890c67..d6d71b23b7f49be099d60b2249c2ee53da8779af 100644 (file)
@@ -529,10 +529,19 @@ sub get_ws_content {
 
 Returns the container ID of the currently focused container on C<$workspace>.
 
+Note that the container ID is B<not> the X11 window ID, so comparing the result
+of C<get_focused> with a window's C<< ->{id} >> property does B<not> work.
+
   my $ws = fresh_workspace;
   my $first_window = open_window;
+  my $first_id = get_focused();
+
   my $second_window = open_window;
-  is(get_focused($ws), $second_window, 'second window focused');
+  my $second_id = get_focused();
+
+  cmd 'focus left';
+
+  is(get_focused($ws), $first_id, 'second window focused');
 
 =cut
 sub get_focused {