mirror of
https://github.com/kristoferssolo/tree-sitter-bruno.git
synced 2026-03-21 16:26:24 +00:00
13 lines
317 B
Python
Generated
13 lines
317 B
Python
Generated
from unittest import TestCase
|
|
|
|
from tree_sitter import Language, Parser
|
|
import tree_sitter_bruno
|
|
|
|
|
|
class TestLanguage(TestCase):
|
|
def test_can_load_grammar(self):
|
|
try:
|
|
Parser(Language(tree_sitter_bruno.language()))
|
|
except Exception:
|
|
self.fail("Error loading Bruno grammar")
|