i3/testcases/t/05-ipc.t
Michael Stapelberg 38a9eabff1 tests: implement sync_with_i3 and use it instead of sleep()
Also use open_standard_window() in a few more places where appropriate
2011-09-24 11:15:08 +01:00

28 lines
590 B
Perl

#!perl
# vim:ts=4:sw=4:expandtab
use i3test;
my $x = X11::XCB::Connection->new;
fresh_workspace;
#####################################################################
# Ensure IPC works by switching workspaces
#####################################################################
# Create a window so we can get a focus different from NULL
my $window = open_standard_window($x);
sync_with_i3($x);
my $focus = $x->input_focus;
# Switch to another workspace
fresh_workspace;
sync_with_i3($x);
my $new_focus = $x->input_focus;
isnt($focus, $new_focus, "Focus changed");
done_testing;