diff options
Diffstat (limited to 'becommands/target.py')
-rw-r--r-- | becommands/target.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/becommands/target.py b/becommands/target.py index f9ab81b..57e69ef 100644 --- a/becommands/target.py +++ b/becommands/target.py @@ -4,6 +4,21 @@ from libbe import cmdutil __desc__ = __doc__ def execute(args): + """ + >>> from libbe import tests + >>> import os + >>> dir = tests.simple_bug_dir() + >>> os.chdir(dir.dir) + >>> execute(("a",)) + No target assigned. + >>> execute(("a", "tomorrow")) + >>> execute(("a",)) + tomorrow + >>> execute(("a", "none")) + >>> execute(("a",)) + No target assigned. + >>> tests.clean_up() + """ assert(len(args) in (0, 1, 2)) if len(args) == 0: print help() |