Przeglądaj źródła

Extend comments in rules tests

tags/gm/2021-09-23T00Z/github.com--lark-parser-lark/0.8.0
Erez Sh 4 lat temu
rodzic
commit
94dd3646d4
1 zmienionych plików z 5 dodań i 2 usunięć
  1. +5
    -2
      tests/test_parser.py

+ 5
- 2
tests/test_parser.py Wyświetl plik

@@ -106,9 +106,12 @@ class TestParsers(unittest.TestCase):
def test_comment_in_rule_definition(self):
g = Lark("""start: a
a: "a"
// A comment
// Another
// A comment
// Another comment
| "b"
// Still more

c: "unrelated"
""")
r = g.parse('b')
self.assertEqual( r.children[0].data, "a" )


Ładowanie…
Anuluj
Zapisz