catch: uncomment some tests

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2013-04-07 18:20:32 +02:00
parent 5e5ae07a9f
commit 2fd56e8fa1

View File

@ -119,10 +119,10 @@ def test_ast_good_catch():
hy_compile(tokenize("(catch)"))
hy_compile(tokenize("(catch [])"))
hy_compile(tokenize("(catch [Foobar])"))
# hy_compile(tokenize("(catch [[]])"))
# hy_compile(tokenize("(catch [x FooBar])"))
# hy_compile(tokenize("(catch [x [FooBar BarFoo]])"))
# hy_compile(tokenize("(catch [x [FooBar BarFoo]])"))
hy_compile(tokenize("(catch [[]])"))
hy_compile(tokenize("(catch [x FooBar])"))
hy_compile(tokenize("(catch [x [FooBar BarFoo]])"))
hy_compile(tokenize("(catch [x [FooBar BarFoo]])"))
def test_ast_bad_catch():