mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
more set tests
This commit is contained in:
parent
05c07913a0
commit
d06233ea5b
1 changed files with 13 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue