]> git.sur5r.net Git - i3/i3/commitdiff
t/115: make the test a little shorter by using helper functions
authorMichael Stapelberg <michael@stapelberg.de>
Tue, 13 Nov 2012 08:39:42 +0000 (09:39 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Tue, 13 Nov 2012 08:40:29 +0000 (09:40 +0100)
testcases/t/115-ipc-workspaces.t

index 1dd12417c15e5675b3a8fb03c019849241e496b6..cffcc45584832a0505dbd004a959fc44860f98f0 100644 (file)
@@ -22,19 +22,7 @@ my $i3 = i3(get_socket_path());
 # Workspaces requests and events
 ################################
 
-my $workspaces = $i3->get_workspaces->recv;
-
-ok(@{$workspaces} > 0, "More than zero workspaces found");
-
-# my $name_exists = all { defined($_->{name}) } @{$workspaces};
-# ok($name_exists, "All workspaces have a name");
-
-# Focused workspace
-my $focused;
-foreach (@{$workspaces}) {
-    $focused = $_ if $_->{focused};
-}
-ok($focused, "At least one workspace is focused");
+my $focused = get_ws(focused_ws());
 
 # Events