diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-02-08 12:45:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-08 12:45:54 -0500 |
commit | ec5539fa8c0d2f0b783869e73cacde1af32465b0 (patch) | |
tree | 248b8a427d82aa68db583eb97a92e7e84b49b913 /tests/conftest.py | |
parent | 4a6bcefbc72018c90534139c706c2b9d3d327810 (diff) | |
parent | cc0e901183c631fb54a968ba9fcdb5f2dda52207 (diff) | |
download | cmd2-git-ec5539fa8c0d2f0b783869e73cacde1af32465b0.tar.gz |
Merge pull request #39 from python-cmd2/parsing_experiments
Parsing improvements for commands using the options decorator
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 530c70a1..4b12f5cd 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -46,6 +46,7 @@ if sys.platform.startswith('win'): expect_colors = False # Output from the show command with default settings SHOW_TXT = """abbrev: True +autorun_on_edit: True case_insensitive: True colors: {} continuation_prompt: > @@ -64,6 +65,7 @@ if expect_colors: else: color_str = 'False' SHOW_LONG = """abbrev: True # Accept abbreviated commands +autorun_on_edit: True # Automatically run files after editing case_insensitive: True # upper- and lower-case both OK colors: {} # Colorized output (*nix only) continuation_prompt: > # On 2nd+ line of input |