Mercurial > p > roundup > code
diff tests/test_schema.py @ 71:5147b4c51fd5
Added the Roundup spec to the new documentation directory.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 25 Jul 2001 01:23:07 +0000 |
| parents | b936635f142d |
| children | f1cffcad4903 |
line wrap: on
line diff
--- a/tests/test_schema.py Tue Jul 24 11:18:25 2001 +0000 +++ b/tests/test_schema.py Wed Jul 25 01:23:07 2001 +0000 @@ -42,9 +42,11 @@ def testB_Issue(self): issue = Class(self.db, "issue", title=String(), status=Link("status")) + self.assert_(issue, 'no class object returned') def testC_User(self): user = Class(self.db, "user", username=String(), password=String()) + self.assert_(user, 'no class object returned') user.setkey("username")
