First Commit

This commit is contained in:
Fabian Stamm
2024-10-01 23:48:00 +02:00
commit 69a6f0444e
37 changed files with 5797 additions and 0 deletions

11
bindings/python/tests/test_binding.py generated Normal file
View File

@ -0,0 +1,11 @@
from unittest import TestCase
import tree_sitter, tree_sitter_jrpc
class TestLanguage(TestCase):
def test_can_load_grammar(self):
try:
tree_sitter.Language(tree_sitter_jrpc.language())
except Exception:
self.fail("Error loading Jrpc grammar")