summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c9a6e38)
raw | patch | inline | side by side (parent: c9a6e38)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 3 Dec 2001 21:33:39 +0000 (21:33 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 3 Dec 2001 21:33:39 +0000 (21:33 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@444 57a73879-2fb5-44c3-a270-3262357dd7e2
test/test_db.py | patch | blob | history | |
test/test_schema.py | patch | blob | history |
diff --git a/test/test_db.py b/test/test_db.py
index 61c08a669c861b9112db963006c3c33af3ad7a01..49074a7f4615960368b8d16217a93c80a1e7bd73 100644 (file)
--- a/test/test_db.py
+++ b/test/test_db.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: test_db.py,v 1.9 2001-12-02 05:06:16 richard Exp $
+# $Id: test_db.py,v 1.10 2001-12-03 21:33:39 richard Exp $
import unittest, os, shutil
self.db.status.get('2', "name")
self.db.issue.get('5', "title")
self.db.issue.find(status = self.db.status.lookup("in-progress"))
+ self.db.commit()
self.db.issue.history('5')
self.db.status.history('1')
self.db.status.history('2')
#
# $Log: not supported by cvs2svn $
+# Revision 1.9 2001/12/02 05:06:16 richard
+# . We now use weakrefs in the Classes to keep the database reference, so
+# the close() method on the database is no longer needed.
+# I bumped the minimum python requirement up to 2.1 accordingly.
+# . #487480 ] roundup-server
+# . #487476 ] INSTALL.txt
+#
+# I also cleaned up the change message / post-edit stuff in the cgi client.
+# There's now a clearly marked "TODO: append the change note" where I believe
+# the change note should be added there. The "changes" list will obviously
+# have to be modified to be a dict of the changes, or somesuch.
+#
+# More testing needed.
+#
# Revision 1.8 2001/10/09 07:25:59 richard
# Added the Password property type. See "pydoc roundup.password" for
# implementation details. Have updated some of the documentation too.
diff --git a/test/test_schema.py b/test/test_schema.py
index 4367e1e0096d40381b98e67fdcae2671dd48f7a0..5b2127c45dd09a47a5aeb03d09e22577c7fffd2e 100644 (file)
--- a/test/test_schema.py
+++ b/test/test_schema.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: test_schema.py,v 1.5 2001-10-09 07:25:59 richard Exp $
+# $Id: test_schema.py,v 1.6 2001-12-03 21:33:39 richard Exp $
import unittest, os, shutil
self.db.clear()
def tearDown(self):
- self.db.close()
shutil.rmtree('_test_dir')
def testA_Status(self):
#
# $Log: not supported by cvs2svn $
+# Revision 1.5 2001/10/09 07:25:59 richard
+# Added the Password property type. See "pydoc roundup.password" for
+# implementation details. Have updated some of the documentation too.
+#
# Revision 1.4 2001/08/07 00:24:43 richard
# stupid typo
#