diff options
author | W. Trevor King <wking@drexel.edu> | 2009-07-31 15:05:19 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-07-31 15:05:19 -0400 |
commit | f24d7264396cb1be8b46b17f9335abf7bcd09ef2 (patch) | |
tree | cfafe736f7673a60ee5627baf5a563fad2402f8b /becommands | |
parent | 58cba607535cd33c97fd5dc3737c9da4afa9a6bb (diff) | |
download | bugseverywhere-f24d7264396cb1be8b46b17f9335abf7bcd09ef2.tar.gz |
Now becommands.new's unittest cleans up after itself.
Diffstat (limited to 'becommands')
-rw-r--r-- | becommands/new.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/becommands/new.py b/becommands/new.py index 1900c7a..a8ee2ec 100644 --- a/becommands/new.py +++ b/becommands/new.py @@ -28,7 +28,7 @@ def execute(args, manipulate_encodings=True): >>> bug.uuid_gen = lambda: "X" >>> execute (["this is a test",], manipulate_encodings=False) Created bug with ID X - >>> bd.load() # breaks simple bug dir rcs for cleanup! + >>> bd._clear_bugs() >>> bug = bd.bug_from_uuid("X") >>> print bug.summary this is a test |