diff --git a/spec/parser.spec.js b/spec/parser.spec.js index b6f1a21..cb03c88 100644 --- a/spec/parser.spec.js +++ b/spec/parser.spec.js @@ -115,6 +115,13 @@ describe("PEG.js grammar parser", function() { }); }); + /* Canonical doubleQuotedString is "\"abcd\"". */ + it("parses doubleQuotedString", function() { + expect('start = ""' ).toParseAs(literalGrammar("")); + expect('start = "a"' ).toParseAs(literalGrammar("a")); + expect('start = "abc"').toParseAs(literalGrammar("abc")); + }); + /* Canonical doubleQuotedCharacter is "a". */ it("parses doubleQuotedCharacter", function() { expect('start = "a"' ).toParseAs(literalGrammar("a")); diff --git a/test/parser-test.js b/test/parser-test.js index 4e0977b..953c99d 100644 --- a/test/parser-test.js +++ b/test/parser-test.js @@ -355,11 +355,4 @@ test("parses string", function() { parserParses('start "abcd"\n= "abcd"', namedRuleGrammar); }); -/* Canonical doubleQuotedString is "\"abcd\"". */ -test("parses doubleQuotedString", function() { - parserParses('start = ""', literalGrammar("")); - parserParses('start = "a"', literalGrammar("a")); - parserParses('start = "abc"', literalGrammar("abc")); -}); - })();