Correctly balance the brackets in the wrong syntax tests
We want to test the compiler, not the lexer.
This commit is contained in:
parent
0c0db1ddcb
commit
1853b7d33c
@ -139,7 +139,7 @@ def test_ast_bad_catch():
|
|||||||
"Make sure AST can't compile invalid catch"
|
"Make sure AST can't compile invalid catch"
|
||||||
cant_compile("(catch 1)")
|
cant_compile("(catch 1)")
|
||||||
cant_compile("(catch [1 3])")
|
cant_compile("(catch [1 3])")
|
||||||
cant_compile("(catch [x [FooBar] BarBar]])")
|
cant_compile("(catch [x [FooBar] BarBar])")
|
||||||
|
|
||||||
|
|
||||||
def test_ast_good_except():
|
def test_ast_good_except():
|
||||||
@ -157,7 +157,7 @@ def test_ast_bad_except():
|
|||||||
"Make sure AST can't compile invalid except"
|
"Make sure AST can't compile invalid except"
|
||||||
cant_compile("(except 1)")
|
cant_compile("(except 1)")
|
||||||
cant_compile("(except [1 3])")
|
cant_compile("(except [1 3])")
|
||||||
cant_compile("(except [x [FooBar] BarBar]])")
|
cant_compile("(except [x [FooBar] BarBar])")
|
||||||
|
|
||||||
|
|
||||||
def test_ast_good_assert():
|
def test_ast_good_assert():
|
||||||
|
Loading…
Reference in New Issue
Block a user