diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-02-05 12:11:16 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-02-05 12:11:16 -0500 |
commit | d5a0487b0058cdf52b295e9ae203e8e90f3247dd (patch) | |
tree | ba6a4ea00d300a8ca076c9da3c897bc48c2f9275 /tests/test_transcript.py | |
parent | ce71e89c1d01e03df7abba3396d9445657ad04d9 (diff) | |
download | cmd2-git-d5a0487b0058cdf52b295e9ae203e8e90f3247dd.tar.gz |
Added unit test for the interactive form of do_py().
Diffstat (limited to 'tests/test_transcript.py')
-rw-r--r-- | tests/test_transcript.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_transcript.py b/tests/test_transcript.py index d11eb02a..c3a32eac 100644 --- a/tests/test_transcript.py +++ b/tests/test_transcript.py @@ -236,7 +236,7 @@ def test_commands_at_invocation(_cmdline_app): def test_select_options(_demo_app): - # Mock out the input call so we don't actually wait for a user's `response on stdin + # Mock out the input call so we don't actually wait for a user's response on stdin m = mock.MagicMock(name='input', return_value='2') sm.input = m |