Merge branch 'master' into next

This commit is contained in:
Michael Stapelberg
2013-01-25 13:56:26 +01:00
2 changed files with 19 additions and 1 deletions

View File

@ -204,6 +204,24 @@ is(parser_calls($config),
$expected,
'workspace_layout ok');
################################################################################
# workspace assignments, with trailing whitespace (ticket #921)
################################################################################
$config = <<'EOT';
workspace "3" output DP-1
workspace "3" output VGA-1
EOT
$expected = <<'EOT';
cfg_workspace(3, DP-1)
cfg_workspace(3, VGA-1)
EOT
is(parser_calls($config),
$expected,
'workspace assignment ok');
################################################################################
# new_window
################################################################################