Initial commit

This commit is contained in:
2024-12-15 15:35:32 +02:00
commit 9a923cded1
49 changed files with 8742 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_bruno
class TestLanguage(TestCase):
def test_can_load_grammar(self):
try:
tree_sitter.Language(tree_sitter_bruno.language())
except Exception:
self.fail("Error loading Bruno grammar")