tests: clean up/beautify all tests (code style / test style)
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user