tests: rename files (00x-*.t is basic stuff, >=100-*.t are tests using IPC)

next
Michael Stapelberg 2011-10-08 14:38:50 +01:00
parent c48a092e24
commit ae1ab9eb27
74 changed files with 15 additions and 0 deletions

15
testcases/t/002-i3-sync.t Normal file
View File

@ -0,0 +1,15 @@
#!perl
# vim:ts=4:sw=4:expandtab
#
# checks if i3 supports I3_SYNC
#
use X11::XCB qw(:all);
use X11::XCB::Connection;
use i3test;
my $x = X11::XCB::Connection->new;
my $result = sync_with_i3($x);
ok($result, 'syncing was successful');
done_testing;