diff options
author | W. Trevor King <wking@drexel.edu> | 2009-06-21 21:54:07 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-06-21 21:54:07 -0400 |
commit | 665e64fbe8fea91f68be42cbbda79082d9a58c30 (patch) | |
tree | df279942ce067f4f994c8e44ad07f3cb707d8efc /becommands/show.py | |
parent | 331be32ec51360389fe729e5a946020429e1cf95 (diff) | |
download | bugseverywhere-665e64fbe8fea91f68be42cbbda79082d9a58c30.tar.gz |
Replaced some doctest output with ellipses.
Following Chris' advice. Don't know what I was thinking before ;).
Diffstat (limited to 'becommands/show.py')
-rw-r--r-- | becommands/show.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/becommands/show.py b/becommands/show.py index 7c48257..4b0078f 100644 --- a/becommands/show.py +++ b/becommands/show.py @@ -23,7 +23,7 @@ def execute(args, test=False): >>> import os >>> bd = bugdir.simple_bug_dir() >>> os.chdir(bd.root) - >>> execute (["a",], test=True) + >>> execute (["a",], test=True) # doctest: +ELLIPSIS ID : a Short name : a Severity : minor @@ -32,10 +32,10 @@ def execute(args, test=False): Target : Reporter : Creator : John Doe <jdoe@example.com> - Created : Wed, 31 Dec 1969 19:00 (Thu, 01 Jan 1970 00:00:00 +0000) + Created : ... Bug A <BLANKLINE> - >>> execute (["--xml", "a"], test=True) + >>> execute (["--xml", "a"], test=True) # doctest: +ELLIPSIS <bug> <uuid>a</uuid> <short-name>a</short-name> @@ -45,7 +45,7 @@ def execute(args, test=False): <target><class 'libbe.settings_object.EMPTY'></target> <reporter><class 'libbe.settings_object.EMPTY'></reporter> <creator>John Doe <jdoe@example.com></creator> - <created>Wed, 31 Dec 1969 19:00 (Thu, 01 Jan 1970 00:00:00 +0000)</created> + <created>...</created> <summary>Bug A</summary> </bug> """ |