Skip to content

Commit 8e133a2

Browse files
author
Richard Jones
committed
Added the fabricated property "id" to all hyperdb classes.
1 parent f3a7009 commit 8e133a2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

test/test_db.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: test_db.py,v 1.1 2001-07-27 06:55:07 richard Exp $
1+
# $Id: test_db.py,v 1.2 2001-07-29 04:09:20 richard Exp $
22

33
import unittest, os, shutil
44

@@ -43,7 +43,7 @@ def testChanges(self):
4343
props = self.db.issue.getprops()
4444
keys = props.keys()
4545
keys.sort()
46-
self.assertEqual(keys, ['fixer', 'nosy', 'status', 'title'])
46+
self.assertEqual(keys, ['fixer', 'id', 'nosy', 'status', 'title'])
4747
self.db.issue.set('5', status='2')
4848
self.db.issue.get('5', "status")
4949
self.db.status.get('2', "name")
@@ -157,6 +157,9 @@ def suite():
157157

158158
#
159159
# $Log: not supported by cvs2svn $
160+
# Revision 1.1 2001/07/27 06:55:07 richard
161+
# moving tests -> test
162+
#
160163
# Revision 1.7 2001/07/27 06:26:43 richard
161164
# oops - wasn't deleting the test dir after the read-only tests
162165
#

0 commit comments

Comments
 (0)