summaryrefslogtreecommitdiff
path: root/tests_isolated
Commit message (Collapse)AuthorAgeFilesLines
* When passing a ns_provider to an argparse command, will now attempt to ↵Eric Lin2020-08-121-5/+29
| | | | resolve the correct CommandSet instance for self. If not, it'll fall back and pass in the cmd2 app
* Breaking change: Removed cmd2 app as a required second parameter toEric Lin2020-08-122-135/+112
| | | | | | CommandSet command functions (do_, complete_, help_). Renamed install_command_set and uninstall_command_set to register_command_set and unregister_command_set.
* Will now traverse down CommandSet inheritance tree to find all leaf descendants.1.3.2Eric Lin2020-08-101-5/+34
| | | | | | CommandSet now has a check to ensure it is only registered with one cmd2.Cmd instance at a time. Adds function to find command set by type and by command name
* Fixed prog value of subcommands added with as_subcommand_to() decorator.Kevin Van Brunt2020-08-071-2/+2
| | | | Fixed missing settings in subcommand parsers created with as_subcommand_to() decorator.
* Verify that a completer function is defined in a CommandSet beforeEric Lin2020-08-065-0/+1137
passing it a CommandSet instance. Search for a CommandSet instance that matches the completer's parent class type.` Resolves Issue #967 Renamed isolated_tests directory to tests_isolated for better visual grouping. Added some exception documentation