]> git.sur5r.net Git - i3/i3/commitdiff
tests: use cmd() in t/32-move-workspace.t
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 29 Nov 2010 19:24:13 +0000 (20:24 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 29 Nov 2010 19:24:13 +0000 (20:24 +0100)
testcases/t/32-move-workspace.t

index ceef98879a9a62f0ed35c92c5224e5d003f44763..09e90a8caeb5a5823dfd86defeba70312722c8b7 100644 (file)
@@ -15,7 +15,7 @@ $x->root->warp_pointer(0, 0);
 
 my $tmp = get_unused_workspace();
 my $tmp2 = get_unused_workspace();
-$i3->command("workspace $tmp")->recv;
+cmd "workspace $tmp";
 
 ok(@{get_ws_content($tmp)} == 0, 'no containers yet');
 
@@ -23,12 +23,12 @@ my $first = open_empty_con($i3);
 my $second = open_empty_con($i3);
 ok(@{get_ws_content($tmp)} == 2, 'two containers on first ws');
 
-$i3->command("workspace $tmp2")->recv;
+cmd "workspace $tmp2";
 ok(@{get_ws_content($tmp2)} == 0, 'no containers on second ws yet');
 
-$i3->command("workspace $tmp")->recv;
+cmd "workspace $tmp";
 
-$i3->command("move workspace $tmp2")->recv;
+cmd "move workspace $tmp2";
 ok(@{get_ws_content($tmp)} == 1, 'one container on first ws anymore');
 ok(@{get_ws_content($tmp2)} == 1, 'one container on second ws');
 my ($nodes, $focus) = get_ws_content($tmp2);