Skip to content

Commit 6c324a7

Browse files
committed
test: Add test to check CEDARScriptASTParser instantiation
1 parent a56709d commit 6c324a7

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/test_parser.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import pytest
2+
from cedarscript_ast_parser import CEDARScriptASTParser
3+
4+
def test_can_instantiate_parser():
5+
"""Test that we can create a CEDARScriptASTParser instance"""
6+
parser = CEDARScriptASTParser()
7+
assert isinstance(parser, CEDARScriptASTParser)

0 commit comments

Comments
 (0)