2010-03-11 15:58:39 +01:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
|
2010-04-17 22:49:26 +02:00
|
|
|
use i3test tests => 2;
|
2010-03-11 15:58:39 +01:00
|
|
|
use List::MoreUtils qw(all);
|
|
|
|
|
2010-03-27 15:20:38 +01:00
|
|
|
my $i3 = i3;
|
2010-03-11 15:58:39 +01:00
|
|
|
|
|
|
|
####################
|
|
|
|
# Request workspaces
|
|
|
|
####################
|
|
|
|
|
2010-03-27 15:20:38 +01:00
|
|
|
my $workspaces = $i3->get_workspaces->recv;
|
2010-03-11 15:58:39 +01:00
|
|
|
|
|
|
|
ok(@{$workspaces} > 0, "More than zero workspaces found");
|
|
|
|
|
|
|
|
my $name_exists = all { defined($_->{name}) } @{$workspaces};
|
|
|
|
ok($name_exists, "All workspaces have a name");
|
|
|
|
|
|
|
|
diag( "Testing i3, Perl $], $^X" );
|