difftastic/vendored_parsers/tree-sitter-gdscript/bindings/python/tests/test_binding.py

12 lines
302 B
Python

from unittest import TestCase
import tree_sitter, tree_sitter_gdscript
class TestLanguage(TestCase):
def test_can_load_grammar(self):
try:
tree_sitter.Language(tree_sitter_gdscript.language())
except Exception:
self.fail("Error loading GDScript grammar")