1
0
Fork 0
mirror of https://github.com/pnx/tree-sitter-dotenv synced 2026-06-16 01:54:56 +02:00
tree-sitter-dotenv/bindings/python/tests/test_binding.py
2024-12-10 19:51:21 +01:00

11 lines
296 B
Python
Generated

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