Split list of command / config directives in tests. (#2345)

This makes adding new directives less prone to merge conflicts.
This commit is contained in:
Ingo Bürk
2016-05-11 20:11:04 +02:00
committed by Michael Stapelberg
parent 4bec3b9d24
commit f5945b7c6e
2 changed files with 74 additions and 31 deletions

View File

@ -144,34 +144,35 @@ is(parser_calls("\nworkspace test"),
################################################################################
is(parser_calls('unknown_literal'),
"ERROR: Expected one of these tokens: <end>, '[', " .
"'move', " .
"'exec', " .
"'exit', " .
"'restart', " .
"'reload', " .
"'shmlog', " .
"'debuglog', " .
"'border', " .
"'layout', " .
"'append_layout', " .
"'workspace', " .
"'focus', " .
"'kill', " .
"'open', " .
"'fullscreen', " .
"'sticky', " .
"'split', " .
"'floating', " .
"'mark', " .
"'unmark', " .
"'resize', " .
"'rename', " .
"'nop', " .
"'scratchpad', " .
"'title_format', " .
"'mode', " .
"'bar'\n" .
"ERROR: Expected one of these tokens: <end>, '[', '" . join("', '", qw(
move
exec
exit
restart
reload
shmlog
debuglog
border
layout
append_layout
workspace
focus
kill
open
fullscreen
sticky
split
floating
mark
unmark
resize
rename
nop
scratchpad
title_format
mode
bar
)) . "'\n" .
"ERROR: Your command: unknown_literal\n" .
"ERROR: ^^^^^^^^^^^^^^^",
'error for unknown literal ok');