]> git.sur5r.net Git - i3/i3/commitdiff
testcases: t/144-*: use open_window instead of launching urxvt
authorMaik Fischer <maikf@qu.cx>
Wed, 23 Nov 2011 10:23:37 +0000 (11:23 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 23 Nov 2011 20:33:44 +0000 (20:33 +0000)
testcases/t/144-regress-floating-resize.t

index de33eeb3961e76f581d08c9a7555ca937a81aea9..03318d7afbf366ea28d216c8c30a2df82f0a8b47 100644 (file)
@@ -11,23 +11,24 @@ use List::Util qw(sum);
 
 my $tmp = fresh_workspace;
 
-cmd 'exec /usr/bin/urxvt';
-sleep 0.5;
-cmd 'exec /usr/bin/urxvt';
-sleep 0.5;
+my $first = open_window;
+my $second = open_window;
+
 my ($nodes, $focus) = get_ws_content($tmp);
 my $old_sum = sum map { $_->{rect}->{width} } @{$nodes};
-#cmd 'open';
+
 cmd 'resize grow left 10 px or 25 ppt';
 cmd 'split v';
-#cmd 'open';
-cmd 'exec /usr/bin/urxvt';
-sleep 0.5;
+
+sync_with_i3;
+
+my $third = open_window;
+
 cmd 'mode toggle';
-sleep 0.5;
-cmd 'kill';
+sync_with_i3;
 
-sleep 0.5;
+cmd 'kill';
+sync_with_i3;
 
 ($nodes, $focus) = get_ws_content($tmp);
 my $new_sum = sum map { $_->{rect}->{width} } @{$nodes};