summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorJason Pellerin <jpellerin@gmail.com>2007-04-20 16:44:43 +0000
committerJason Pellerin <jpellerin@gmail.com>2007-04-20 16:44:43 +0000
commita1d6c855f271c436016137f8165030cf62bd3a84 (patch)
treeda22f95df501f7ea9d03de0c9b60b053dde3ba5f /TODO
parente14f13f959c174d60d3ff56323a1335fb3601725 (diff)
downloadnose-a1d6c855f271c436016137f8165030cf62bd3a84.tar.gz
Started work on testid plugin
Diffstat (limited to 'TODO')
-rw-r--r--TODO14
1 files changed, 14 insertions, 0 deletions
diff --git a/TODO b/TODO
index 446d115..c8f19d9 100644
--- a/TODO
+++ b/TODO
@@ -48,6 +48,20 @@ BUGS
sqlalchemy.sql._FunctionGateway, which doesn't match testmatch and
isn't a testcase subclass -- need to look into it further.
+-- incorrectly defined test class generator method causes failure of whole
+ test run:
+
+ _TextTestResult.printErrors(self)
+ File "unittest.py", line 667, in printErrors
+ self.printErrorList('ERROR', self.errors)
+ File "unittest.py", line 673, in printErrorList
+ self.stream.writeln("%s: %s" % (flavour,self.getDescription(test)))
+ File "unittest.py", line 633, in getDescription
+ return test.shortDescription() or str(test)
+AttributeError: 'ContextSuite' object has no attribute 'shortDescription'
+
+need to add shortDescription() to suite?
+
CHORES