make t/205-ipc-windows require AnyEvent::I3 >= 0.15

Necessary due to the new event type
This commit is contained in:
Michael Stapelberg 2013-02-18 10:59:32 +01:00
parent 3facbbca5c
commit 9cd2d1fb8a
1 changed files with 6 additions and 0 deletions

View File

@ -16,6 +16,10 @@
use i3test;
SKIP: {
skip "AnyEvent::I3 too old (need >= 0.15)", 1 if $AnyEvent::I3::VERSION < 0.15;
my $i3 = i3(get_socket_path());
$i3->connect()->recv;
@ -40,4 +44,6 @@ $t = AnyEvent->timer(after => 0.5, cb => sub { $new->send(0); });
ok($new->recv, 'Window "new" event received');
}
done_testing;