38 lines
981 B
Perl
38 lines
981 B
Perl
#!perl
|
|
# vim:ts=4:sw=4:expandtab
|
|
#
|
|
use i3test;
|
|
|
|
my $tmp = fresh_workspace;
|
|
|
|
my $left = open_window;
|
|
my $mid = open_window;
|
|
|
|
cmd 'split v';
|
|
my $bottom = open_window;
|
|
|
|
my ($nodes, $focus) = get_ws_content($tmp);
|
|
|
|
#############################################################################
|
|
# 1: open a floating window, get it mapped
|
|
#############################################################################
|
|
|
|
# Create a floating window
|
|
my $window = open_floating_window;
|
|
ok($window->mapped, 'Window is mapped');
|
|
|
|
($nodes, $focus) = get_ws_content($tmp);
|
|
is(@{$nodes->[1]->{nodes}}, 2, 'two windows in split con');
|
|
|
|
#############################################################################
|
|
# 2: make it tiling, see where it ends up
|
|
#############################################################################
|
|
|
|
cmd 'floating toggle';
|
|
|
|
($nodes, $focus) = get_ws_content($tmp);
|
|
|
|
is(@{$nodes->[1]->{nodes}}, 3, 'three windows in split con after floating toggle');
|
|
|
|
done_testing;
|