Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Commit

Permalink
tests: use new assign syntax, drop legacy test
Browse files Browse the repository at this point in the history
  • Loading branch information
stapelberg committed Oct 8, 2012
1 parent 85018de commit a635945
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 32 deletions.
33 changes: 2 additions & 31 deletions testcases/t/166-assign.t
Expand Up @@ -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);
Expand Down Expand Up @@ -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);
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion testcases/t/173-regress-focus-assign.t
Expand Up @@ -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);
Expand Down

0 comments on commit a635945

Please sign in to comment.