add failing test case

This commit is contained in:
Michel Oosterhof 2019-10-03 19:48:23 +03:00
parent 0ab11d1e71
commit 0af419bbb1
1 changed files with 7 additions and 0 deletions

View File

@ -157,5 +157,12 @@ class ShellEchoCommandTests(unittest.TestCase):
self.proto.lineReceived(b'echo $(echo test)')
self.assertEquals(self.tr.value(), b'test\n' + PROMPT)
def test_echo_command_019(self):
"""
(echo test)
"""
self.proto.lineReceived(b'(echo test)')
self.assertEquals(self.tr.value(), b'test\n' + PROMPT)
def tearDown(self):
self.proto.connectionLost("tearDown From Unit Test")