more set tests

This commit is contained in:
Anthony Scopatz 2015-01-25 15:05:38 -06:00
parent 05c07913a0
commit d06233ea5b

View file

@ -302,6 +302,18 @@ def test_tuple_three():
def test_set_one():
yield check_ast, '{42}'
def test_set_one_comma():
yield check_ast, '{42,}'
def test_set_two():
yield check_ast, '{42, 65}'
def test_set_two_comma():
yield check_ast, '{42, 65,}'
def test_set_three():
yield check_ast, '{42, 65, 45}'
#DEBUG_LEVEL = 1
#DEBUG_LEVEL = 100