2010-03-11 09:58:39 -05:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
2012-09-10 08:09:01 -04:00
|
|
|
#
|
|
|
|
# Please read the following documents before working on tests:
|
|
|
|
# • http://build.i3wm.org/docs/testsuite.html
|
|
|
|
# (or docs/testsuite)
|
|
|
|
#
|
|
|
|
# • http://build.i3wm.org/docs/lib-i3test.html
|
|
|
|
# (alternatively: perldoc ./testcases/lib/i3test.pm)
|
|
|
|
#
|
|
|
|
# • http://build.i3wm.org/docs/ipc.html
|
|
|
|
# (or docs/ipc)
|
|
|
|
#
|
|
|
|
# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
|
|
|
|
# (unless you are already familiar with Perl)
|
2010-03-11 09:58:39 -05:00
|
|
|
|
2011-03-09 14:25:17 -05:00
|
|
|
use i3test;
|
2010-03-11 09:58:39 -05:00
|
|
|
|
2011-07-25 07:35:56 -04:00
|
|
|
my $i3 = i3(get_socket_path());
|
2010-03-11 09:58:39 -05:00
|
|
|
|
|
|
|
####################
|
|
|
|
# Request workspaces
|
|
|
|
####################
|
|
|
|
|
2010-06-02 17:53:22 -04:00
|
|
|
SKIP: {
|
|
|
|
skip "IPC API not yet stabilized", 2;
|
|
|
|
|
2010-03-27 10:20:38 -04:00
|
|
|
my $workspaces = $i3->get_workspaces->recv;
|
2010-03-11 09:58:39 -05:00
|
|
|
|
|
|
|
ok(@{$workspaces} > 0, "More than zero workspaces found");
|
|
|
|
|
2011-10-05 18:21:36 -04:00
|
|
|
#my $name_exists = all { defined($_->{name}) } @{$workspaces};
|
|
|
|
#ok($name_exists, "All workspaces have a name");
|
2010-03-11 09:58:39 -05:00
|
|
|
|
2010-06-02 17:53:22 -04:00
|
|
|
}
|
|
|
|
|
2011-03-09 14:25:17 -05:00
|
|
|
done_testing;
|