tests: clean up/beautify all tests (code style / test style)

This commit is contained in:
Michael Stapelberg
2011-03-09 20:25:17 +01:00
parent 57e7cc8f6a
commit 2524b5262d
53 changed files with 334 additions and 415 deletions

View File

@ -3,22 +3,18 @@
#
# Tests multiple commands (using ';') and multiple operations (using ',')
#
use i3test tests => 24;
use X11::XCB qw(:all);
use i3test;
my $i3 = i3("/tmp/nestedcons");
my $tmp = get_unused_workspace();
$i3->command("workspace $tmp")->recv;
my $tmp = fresh_workspace;
sub multiple_cmds {
my ($cmd) = @_;
$i3->command('open')->recv;
$i3->command('open')->recv;
cmd 'open';
cmd 'open';
ok(@{get_ws_content($tmp)} == 2, 'two containers opened');
$i3->command($cmd)->recv;
cmd $cmd;
ok(@{get_ws_content($tmp)} == 0, "both containers killed (cmd = $cmd)");
}
multiple_cmds('kill;kill');
@ -36,4 +32,4 @@ multiple_cmds("kill \t ; \t kill");
# TODO: need a non-invasive command before implementing a test which uses ','
diag( "Testing i3, Perl $], $^X" );
done_testing;