feat: enable go & python bindings

This commit is contained in:
ObserverOfTime
2025-05-16 19:20:03 +03:00
parent 28e327cd3f
commit dffd961034
12 changed files with 231 additions and 9 deletions

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

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