summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4b6df06)
raw | patch | inline | side by side (parent: 4b6df06)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 25 Jul 2001 03:40:19 +0000 (03:40 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 25 Jul 2001 03:40:19 +0000 (03:40 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@78 57a73879-2fb5-44c3-a270-3262357dd7e2
tests/test_db.py | patch | blob | history |
diff --git a/tests/test_db.py b/tests/test_db.py
index 5d5511f7d58621740c02f9e107b933408cea187e..f303add19f4f251300b45b0688aceb26fe9cf4ea 100644 (file)
--- a/tests/test_db.py
+++ b/tests/test_db.py
props = self.db.issue.getprops()
keys = props.keys()
keys.sort()
- self.assertEqual(keys, ['title', 'status', 'user'], 'wrong prop list')
+ self.assertEqual(keys, ['fixer', 'status', 'title'], 'wrong prop list')
self.db.issue.set('5', status=2)
self.db.issue.get('5', "status")
self.db.status.get('2', "name")
def testExceptions(self):
# this tests the exceptions that should be raised
+ pass
def suite():
return unittest.makeSuite(DBTestCase, 'test')