From e150af60e2331fbacbd2de1bcfd572b7cf73c802 Mon Sep 17 00:00:00 2001 From: Aaron Bentley Date: Thu, 24 Mar 2005 13:05:44 +0000 Subject: Finished tests for new --- becommands/new.py | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'becommands/new.py') diff --git a/becommands/new.py b/becommands/new.py index 01acf96..47221a7 100644 --- a/becommands/new.py +++ b/becommands/new.py @@ -1,13 +1,24 @@ """Create a new bug""" -from libbe import bugdir, cmdutil, names, utility, tests +from libbe import bugdir, cmdutil, names, utility def execute(args): """ - >>> import os + >>> import os, time + >>> from libbe import tests >>> dir = tests.bug_arch_dir() >>> os.chdir(dir.dir) >>> names.uuid = lambda: "a" >>> execute (("this is a test",)) Created bug with ID a + >>> bug = list(dir.list())[0] + >>> bug.summary + 'this is a test' + >>> bug.creator = os.environ["LOGNAME"] + >>> bug.time <= int(time.time()) + True + >>> bug.severity + 'minor' + >>> bug.target == None + True >>> tests.clean_up() """ if len(args) != 1: -- cgit