2015-12-09 13:39:08 +01:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
#
|
|
|
|
# Please read the following documents before working on tests:
|
2017-09-24 10:19:50 +02:00
|
|
|
# • https://build.i3wm.org/docs/testsuite.html
|
2015-12-09 13:39:08 +01:00
|
|
|
# (or docs/testsuite)
|
|
|
|
#
|
2017-09-24 10:19:50 +02:00
|
|
|
# • https://build.i3wm.org/docs/lib-i3test.html
|
2015-12-09 13:39:08 +01:00
|
|
|
# (alternatively: perldoc ./testcases/lib/i3test.pm)
|
|
|
|
#
|
2017-09-24 10:19:50 +02:00
|
|
|
# • https://build.i3wm.org/docs/ipc.html
|
2015-12-09 13:39:08 +01:00
|
|
|
# (or docs/ipc)
|
|
|
|
#
|
|
|
|
# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
|
|
|
|
# (unless you are already familiar with Perl)
|
|
|
|
#
|
|
|
|
# Ticket: #2091
|
|
|
|
use i3test;
|
|
|
|
|
|
|
|
my $ws = fresh_workspace;
|
|
|
|
open_window;
|
|
|
|
|
|
|
|
my $result = cmd '[con_id=foobar] kill';
|
|
|
|
is($result->[0]->{success}, 0, 'command was unsuccessful');
|
|
|
|
is($result->[0]->{error}, 'Invalid match: invalid con_id', 'correct error is returned');
|
|
|
|
|
|
|
|
done_testing;
|