We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb7d3d6 commit e32adb9Copy full SHA for e32adb9
extra/test_hypothesis.py
@@ -85,6 +85,9 @@ def test_parser_api_from_str(expr):
85
except Exception as e:
86
raise AssertionError("Non JMESPathError raised: %s" % e)
87
assert isinstance(ast.parsed, dict)
88
+ assert 'type' in ast.parsed
89
+ assert 'children' in ast.parsed
90
+ assert isinstance(ast.parsed['children'], list)
91
92
93
@settings(**BASE_SETTINGS)
0 commit comments