]> git.sur5r.net Git - i3/i3/blob - testcases/t/003-ipc.t
Merge branch 'master' into next
[i3/i3] / testcases / t / 003-ipc.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3
4 use i3test;
5
6 fresh_workspace;
7
8 #####################################################################
9 # Ensure IPC works by switching workspaces
10 #####################################################################
11
12 # Create a window so we can get a focus different from NULL
13 my $window = open_window;
14
15 my $focus = $x->input_focus;
16
17 # Switch to another workspace
18 fresh_workspace;
19
20 sync_with_i3;
21 my $new_focus = $x->input_focus;
22 isnt($focus, $new_focus, "Focus changed");
23
24 done_testing;