First Commit
This commit is contained in:
11
bindings/python/tests/test_binding.py
generated
Normal file
11
bindings/python/tests/test_binding.py
generated
Normal file
@ -0,0 +1,11 @@
|
||||
from unittest import TestCase
|
||||
|
||||
import tree_sitter, tree_sitter_jrpc
|
||||
|
||||
|
||||
class TestLanguage(TestCase):
|
||||
def test_can_load_grammar(self):
|
||||
try:
|
||||
tree_sitter.Language(tree_sitter_jrpc.language())
|
||||
except Exception:
|
||||
self.fail("Error loading Jrpc grammar")
|
Reference in New Issue
Block a user