summaryrefslogtreecommitdiff
path: root/tests/test_transcript.py
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2018-05-03 23:15:53 -0600
committerkotfu <kotfu@kotfu.net>2018-05-03 23:15:53 -0600
commitbf729520b88270df0a1e7b8faa79ac6784549d7b (patch)
tree9c1ef5b9258bd009146d6ac15a5218564550898d /tests/test_transcript.py
parentdedd045666fe7bc90e3ba5f629c6b74673ccfec6 (diff)
downloadcmd2-git-bf729520b88270df0a1e7b8faa79ac6784549d7b.tar.gz
Fix #384, multiline commands now appear properly in transcripts
Diffstat (limited to 'tests/test_transcript.py')
-rw-r--r--tests/test_transcript.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_transcript.py b/tests/test_transcript.py
index 3a8eee66..6e2b1cac 100644
--- a/tests/test_transcript.py
+++ b/tests/test_transcript.py
@@ -130,8 +130,7 @@ def test_history_transcript(request, capsys):
app = CmdLineApp()
app.stdout = StdOut()
run_cmd(app, 'help')
- run_cmd(app, 'speak lots of wierd [ /tmp ]: chars?')
- run_cmd(app, 'speak /this is not a regex/')
+ run_cmd(app, 'orate this is\na multiline\ncommand;\n')
# Get location of the expected transcript
test_dir = os.path.dirname(request.module.__file__)