aboutsummaryrefslogtreecommitdiffstats
path: root/libbe
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2010-01-23 15:56:14 -0500
committerW. Trevor King <wking@drexel.edu>2010-01-23 15:56:14 -0500
commit82cbdccfcd10e9b61e234c80e2a6d3703b2c93a2 (patch)
tree3719d60176b5acf38a80deaa68fdb2cbbac2f3eb /libbe
parent04cd30589f138704e9cf88ee37f6549733cbe7e1 (diff)
downloadbugseverywhere-82cbdccfcd10e9b61e234c80e2a6d3703b2c93a2.tar.gz
Added "Created comment..." output to `be comment`
Diffstat (limited to 'libbe')
-rw-r--r--libbe/command/comment.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/libbe/command/comment.py b/libbe/command/comment.py
index 16b0e77..b82576a 100644
--- a/libbe/command/comment.py
+++ b/libbe/command/comment.py
@@ -32,6 +32,7 @@ class Comment (libbe.command.Command):
>>> import time
>>> import libbe.bugdir
+ >>> import libbe.util.id
>>> bd = libbe.bugdir.SimpleBugDir(memory=False)
>>> io = libbe.command.StringInputOutput()
>>> io.stdout = sys.stdout
@@ -39,8 +40,12 @@ class Comment (libbe.command.Command):
>>> ui.storage_callbacks.set_storage(bd.storage)
>>> cmd = Comment(ui=ui)
+ >>> uuid_gen = libbe.util.id.uuid_gen
+ >>> libbe.util.id.uuid_gen = lambda: 'X'
>>> ui._user_id = u'Fran\\xe7ois'
>>> ret = ui.run(cmd, args=['/a', 'This is a comment about a'])
+ Created comment with ID abc/a/X
+ >>> libbe.util.id.uuid_gen = uuid_gen
>>> bd.flush_reload()
>>> bug = bd.bug_from_uuid('a')
>>> bug.load_comments(load_full=False)
@@ -65,7 +70,10 @@ class Comment (libbe.command.Command):
UserError: No comment supplied, and EDITOR not specified.
>>> os.environ['EDITOR'] = "echo 'I like cheese' > "
+ >>> libbe.util.id.uuid_gen = lambda: 'Y'
>>> ret = ui.run(cmd, args=['/b'])
+ Created comment with ID abc/b/Y
+ >>> libbe.util.id.uuid_gen = uuid_gen
>>> bd.flush_reload()
>>> bug = bd.bug_from_uuid('b')
>>> bug.load_comments(load_full=False)
@@ -143,6 +151,7 @@ class Comment (libbe.command.Command):
for key in ['alt-id', 'author', 'content-type']:
if params[key] != None:
setattr(new, key, params[key])
+ print >> self.stdout, 'Created comment with ID %s' % new.id.user()
return 0
def _long_help(self):