2 # vim:ts=4:sw=4:expandtab
8 #####################################################################
9 # Ensure IPC works by switching workspaces
10 #####################################################################
12 # Create a window so we can get a focus different from NULL
13 my $window = open_window;
15 my $focus = $x->input_focus;
17 # Switch to another workspace
21 my $new_focus = $x->input_focus;
22 isnt($focus, $new_focus, "Focus changed");