tests: use new assign syntax, drop legacy test
This commit is contained in:
parent
85018de433
commit
a635945f85
|
@ -86,7 +86,7 @@ $window->destroy;
|
|||
$config = <<EOT;
|
||||
# i3 config file (v4)
|
||||
font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
|
||||
assign "special" → targetws
|
||||
assign [class="special"] → targetws
|
||||
EOT
|
||||
|
||||
$pid = launch_with_config($config);
|
||||
|
@ -145,7 +145,7 @@ exit_gracefully($pid);
|
|||
$config = <<EOT;
|
||||
# i3 config file (v4)
|
||||
font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
|
||||
assign "special" → ~
|
||||
for_window [class="special"] floating enable
|
||||
EOT
|
||||
|
||||
$pid = launch_with_config($config);
|
||||
|
@ -166,35 +166,6 @@ $window->destroy;
|
|||
|
||||
exit_gracefully($pid);
|
||||
|
||||
#####################################################################
|
||||
# make sure that assignments are case-insensitive in the old syntax.
|
||||
#####################################################################
|
||||
|
||||
$config = <<EOT;
|
||||
# i3 config file (v4)
|
||||
font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
|
||||
assign "special" → ~
|
||||
EOT
|
||||
|
||||
$pid = launch_with_config($config);
|
||||
|
||||
$tmp = fresh_workspace;
|
||||
|
||||
ok(@{get_ws_content($tmp)} == 0, 'no containers yet');
|
||||
$workspaces = get_workspace_names;
|
||||
ok(!("targetws" ~~ @{$workspaces}), 'targetws does not exist yet');
|
||||
|
||||
$window = open_special(wm_class => 'SPEcial');
|
||||
wait_for_map $window;
|
||||
|
||||
$content = get_ws($tmp);
|
||||
ok(@{$content->{nodes}} == 0, 'no tiling cons');
|
||||
ok(@{$content->{floating_nodes}} == 1, 'one floating con');
|
||||
|
||||
$window->destroy;
|
||||
|
||||
exit_gracefully($pid);
|
||||
|
||||
#####################################################################
|
||||
# regression test: dock clients with floating assignments should not crash
|
||||
# (instead, nothing should happen - dock clients can’t float)
|
||||
|
|
|
@ -62,7 +62,7 @@ sub open_special {
|
|||
my $config = <<EOT;
|
||||
# i3 config file (v4)
|
||||
font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
|
||||
assign "special" → targetws
|
||||
assign [class="special"] targetws
|
||||
EOT
|
||||
|
||||
my $pid = launch_with_config($config);
|
||||
|
|
Loading…
Reference in New Issue