mirror of
https://github.com/pnx/tree-sitter-dotenv
synced 2026-06-16 01:54:56 +02:00
11 lines
296 B
Python
Generated
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")
|