mirror of
https://github.com/pnx/tree-sitter-dotenv
synced 2026-06-16 14:04:57 +02:00
11 lines
292 B
Python
Generated
11 lines
292 B
Python
Generated
from unittest import TestCase
|
|
|
|
import tree_sitter, tree_sitter_dotenv
|
|
|
|
|
|
class TestLanguage(TestCase):
|
|
def test_can_load_grammar(self):
|
|
try:
|
|
Parser(Language(tree_sitter_dotenv.language()))
|
|
except Exception:
|
|
self.fail("Error loading Dotenv grammar")
|