diff options
Diffstat (limited to 'bindings/python')
-rw-r--r-- | bindings/python/tests/test_binding.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bindings/python/tests/test_binding.py b/bindings/python/tests/test_binding.py new file mode 100644 index 0000000..9da0402 --- /dev/null +++ b/bindings/python/tests/test_binding.py @@ -0,0 +1,11 @@ +from unittest import TestCase + +import tree_sitter, tree_sitter_gsp + + +class TestLanguage(TestCase): + def test_can_load_grammar(self): + try: + tree_sitter.Language(tree_sitter_gsp.language()) + except Exception: + self.fail("Error loading Gsp grammar") |