]> git.sur5r.net Git - i3/i3/commitdiff
Break list of all commands into one line per command. This reduces the chances of... 1967/head
authorIngo Bürk <ingo.buerk@tngtech.com>
Sun, 27 Sep 2015 17:25:17 +0000 (19:25 +0200)
committerIngo Bürk <ingo.buerk@tngtech.com>
Sun, 27 Sep 2015 17:25:17 +0000 (19:25 +0200)
introducing or removing commands and therefore increases maintainability (albeit by only a little).

testcases/t/187-commands-parser.t

index 8aff1f6dea0a5a759fec52b24b3b98205eeef4ce..4f555b29d4a42c3d5fe3824abdb51ec8bd0f368b 100644 (file)
@@ -144,7 +144,34 @@ 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>, '[', " .
+   "'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');