|
15 | 15 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
16 | 16 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
17 | 17 | # |
18 | | -# $Id: test_db.py,v 1.9 2001-12-02 05:06:16 richard Exp $ |
| 18 | +# $Id: test_db.py,v 1.10 2001-12-03 21:33:39 richard Exp $ |
19 | 19 |
|
20 | 20 | import unittest, os, shutil |
21 | 21 |
|
@@ -78,6 +78,7 @@ def testChanges(self): |
78 | 78 | self.db.status.get('2', "name") |
79 | 79 | self.db.issue.get('5', "title") |
80 | 80 | self.db.issue.find(status = self.db.status.lookup("in-progress")) |
| 81 | + self.db.commit() |
81 | 82 | self.db.issue.history('5') |
82 | 83 | self.db.status.history('1') |
83 | 84 | self.db.status.history('2') |
@@ -238,6 +239,20 @@ def suite(): |
238 | 239 |
|
239 | 240 | # |
240 | 241 | # $Log: not supported by cvs2svn $ |
| 242 | +# Revision 1.9 2001/12/02 05:06:16 richard |
| 243 | +# . We now use weakrefs in the Classes to keep the database reference, so |
| 244 | +# the close() method on the database is no longer needed. |
| 245 | +# I bumped the minimum python requirement up to 2.1 accordingly. |
| 246 | +# . #487480 ] roundup-server |
| 247 | +# . #487476 ] INSTALL.txt |
| 248 | +# |
| 249 | +# I also cleaned up the change message / post-edit stuff in the cgi client. |
| 250 | +# There's now a clearly marked "TODO: append the change note" where I believe |
| 251 | +# the change note should be added there. The "changes" list will obviously |
| 252 | +# have to be modified to be a dict of the changes, or somesuch. |
| 253 | +# |
| 254 | +# More testing needed. |
| 255 | +# |
241 | 256 | # Revision 1.8 2001/10/09 07:25:59 richard |
242 | 257 | # Added the Password property type. See "pydoc roundup.password" for |
243 | 258 | # implementation details. Have updated some of the documentation too. |
|
0 commit comments