mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
have failing test case
This commit is contained in:
parent
ef0d57aca9
commit
7ceb158154
1 changed files with 7 additions and 0 deletions
|
@ -132,6 +132,13 @@ def _g(args, stdin=None):
|
|||
aliases['g'] = _g
|
||||
g
|
||||
""", (("x"*100) + '\n') * 1000, 0),
|
||||
# test piping 'real' command
|
||||
("""
|
||||
with open('tttt', 'w') as fp:
|
||||
fp.write("Wow mom!\\n")
|
||||
|
||||
cat tttt | wc
|
||||
""", " 1 2 9 <stdin>", 0),
|
||||
]
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue