have failing test case

This commit is contained in:
Anthony Scopatz 2016-10-25 20:55:42 -04:00
parent ef0d57aca9
commit 7ceb158154

View file

@ -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),
]