diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-02-11 20:51:27 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-02-11 20:51:27 -0500 |
commit | f9d241418862d9ee6d680c6f4474363e50bc617f (patch) | |
tree | 83bf77942ccdb4288ed704643a86b91a34e56a5b /tests/conftest.py | |
parent | e637637ff4eedb6d997d6835a9b9bedddbb22b00 (diff) | |
download | cmd2-git-f9d241418862d9ee6d680c6f4474363e50bc617f.tar.gz |
Refactored to move all cmd2.Cmd class member variables to beginning.
Also:
- Added locals_in_py to settable parameters to match documentation.
- Added pycon2010 slides back into doc build since they are referenced with :doc:
- Fixed some references in the documentation
- Updated unit tests accordingly
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 4b12f5cd..8bc11497 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -55,6 +55,7 @@ default_file_name: command.txt echo: False editor: vim feedback_to_output: False +locals_in_py: True prompt: (Cmd) quiet: False timing: False @@ -74,7 +75,8 @@ default_file_name: command.txt # for ``save``, ``load``, etc. echo: False # Echo command issued into output editor: vim # Program used by ``edit`` feedback_to_output: False # include nonessentials in `|`, `>` results -prompt: (Cmd) # +locals_in_py: True # Allow access to your application in py via self +prompt: (Cmd) # The prompt issued to solicit input quiet: False # Don't print nonessential feedback timing: False # Report execution times """.format(color_str) |