]> git.sur5r.net Git - i3/i3/commitdiff
t/201-config-parser: add test for quotes in comments
authorMichael Stapelberg <michael@stapelberg.de>
Tue, 2 Apr 2013 20:24:52 +0000 (22:24 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Tue, 2 Apr 2013 20:27:04 +0000 (22:27 +0200)
testcases/t/201-config-parser.t

index 6a49ff7844eddebfda36bec143ac450e8a83bec4..151103d7503d1f4770c46436445a66edc46de924 100644 (file)
@@ -448,6 +448,21 @@ is(parser_calls($config),
    $expected,
    'errors dont harm subsequent statements');
 
+################################################################################
+# Regression: semicolons end comments, but shouldn’t
+################################################################################
+
+$config = <<'EOT';
+# "foo" client.focused          #4c7899 #285577 #ffffff #2e9ef4
+EOT
+
+$expected = <<'EOT';
+
+EOT
+
+is(parser_calls($config),
+   $expected,
+   'semicolon does not end a comment line');
 
 ################################################################################
 # Error message with 2+2 lines of context