diff options
Diffstat (limited to 'becommands/new.py')
-rw-r--r-- | becommands/new.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/becommands/new.py b/becommands/new.py index afa6494..01acf96 100644 --- a/becommands/new.py +++ b/becommands/new.py @@ -1,6 +1,15 @@ """Create a new bug""" -from libbe import bugdir, cmdutil, names, utility +from libbe import bugdir, cmdutil, names, utility, tests def execute(args): + """ + >>> import os + >>> dir = tests.bug_arch_dir() + >>> os.chdir(dir.dir) + >>> names.uuid = lambda: "a" + >>> execute (("this is a test",)) + Created bug with ID a + >>> tests.clean_up() + """ if len(args) != 1: raise cmdutil.UserError("Please supply a summary message") dir = cmdutil.bug_tree() |