2010-03-11 15:58:39 +01:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
|
2010-03-27 15:20:38 +01:00
|
|
|
use Test::More tests => 3;
|
2010-03-11 15:58:39 +01:00
|
|
|
use Test::Exception;
|
|
|
|
use List::MoreUtils qw(all);
|
|
|
|
use FindBin;
|
|
|
|
use lib "$FindBin::Bin/lib";
|
|
|
|
use i3test;
|
2010-03-27 15:20:38 +01:00
|
|
|
use AnyEvent::I3;
|
2010-03-11 15:58:39 +01:00
|
|
|
|
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" );
|