From: Aaron Bentley Date: Thu, 24 Mar 2005 15:43:32 +0000 (+0000) Subject: Copied test to close command X-Git-Tag: 1.0.0~312 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5f36f36f76f11730194571e90f03caf87b814300;p=be.git Copied test to close command --- diff --git a/becommands/close.py b/becommands/close.py index 4f50b58..fba0b7b 100644 --- a/becommands/close.py +++ b/becommands/close.py @@ -11,6 +11,7 @@ def execute(args): >>> execute(("a",)) >>> dir.get_bug("a").status 'closed' + >>> tests.clean_up() """ assert(len(args) == 1) bug = cmdutil.get_bug(args[0]) diff --git a/becommands/open.py b/becommands/open.py index dd50f93..82d739b 100644 --- a/becommands/open.py +++ b/becommands/open.py @@ -1,6 +1,18 @@ """Re-open a bug""" from libbe import cmdutil def execute(args): + """ + >>> from libbe import tests + >>> import os + >>> dir = tests.simple_bug_dir() + >>> os.chdir(dir.dir) + >>> dir.get_bug("b").status + 'closed' + >>> execute(("b",)) + >>> dir.get_bug("b").status + 'open' + >>> tests.clean_up() + """ assert(len(args) == 1) bug = cmdutil.get_bug(args[0]) bug.status = "open"