diff options
Diffstat (limited to 'becommands/set.py')
-rw-r--r-- | becommands/set.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/becommands/set.py b/becommands/set.py index 875ca86..a99fc19 100644 --- a/becommands/set.py +++ b/becommands/set.py @@ -1,6 +1,21 @@ """Change tree settings""" from libbe import cmdutil def execute(args): + """ + >>> from libbe import tests + >>> import os + >>> dir = tests.simple_bug_dir() + >>> os.chdir(dir.dir) + >>> execute(("a",)) + None + >>> execute(("a", "tomorrow")) + >>> execute(("a",)) + tomorrow + >>> execute(("a", "none")) + >>> execute(("a",)) + None + >>> tests.clean_up() + """ if len(args) > 2: raise cmdutil.UserError("Too many arguments.") tree = cmdutil.bug_tree() |