mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
add some parser tests back in
This commit is contained in:
parent
d7023768e0
commit
a19ae1ade3
1 changed files with 6 additions and 0 deletions
|
@ -1568,6 +1568,12 @@ def test_ls_nest_ls():
|
|||
def test_ls_nest_ls_dashl():
|
||||
yield check_xonsh_ast, {}, '$(ls $(ls) -l)', False
|
||||
|
||||
def test_ls_envvar_strval():
|
||||
yield check_xonsh_ast, {'WAKKA': '.'}, '$(ls $WAKKA)', False
|
||||
|
||||
def test_ls_envvar_listval():
|
||||
yield check_xonsh_ast, {'WAKKA': ['.', '.']}, '$(ls $WAKKA)', False
|
||||
|
||||
def test_bang_sub():
|
||||
yield check_xonsh_ast, {}, '!(ls)', False
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue