]> git.sur5r.net Git - i3/i3/blob - testcases/t/205-ipc-windows.t
Implement the tick event
[i3/i3] / testcases / t / 205-ipc-windows.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3 #
4 # Please read the following documents before working on tests:
5 # • https://build.i3wm.org/docs/testsuite.html
6 #   (or docs/testsuite)
7 #
8 # • https://build.i3wm.org/docs/lib-i3test.html
9 #   (alternatively: perldoc ./testcases/lib/i3test.pm)
10 #
11 # • https://build.i3wm.org/docs/ipc.html
12 #   (or docs/ipc)
13 #
14 # • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
15 #   (unless you are already familiar with Perl)
16
17 use i3test;
18
19 my $new = AnyEvent->condvar;
20 my $focus = AnyEvent->condvar;
21
22 my @events = events_for(
23     sub { open_window },
24     'window');
25
26 is(scalar @events, 2, 'Received 2 events');
27 is($events[0]->{container}->{focused}, 0, 'Window "new" event received');
28 is($events[1]->{container}->{focused}, 1, 'Window "focus" event received');
29
30 done_testing;