summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5e69d69)
raw | patch | inline | side by side (parent: 5e69d69)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 29 Aug 2001 06:23:59 +0000 (06:23 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 29 Aug 2001 06:23:59 +0000 (06:23 +0000) |
details.
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@250 57a73879-2fb5-44c3-a270-3262357dd7e2
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@250 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
README.txt | patch | blob | history | |
test/test_db.py | patch | blob | history | |
test/test_init.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index d8eb709cf60fc4178bb1b4cf0db4d9f5dbe795f2..2c5b122e32d4e92f21d08b3c9f0518bbe30d8531 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
. Notes entered during a change are saved to the messages list even if
there's no nosy list. No message is generated if there's no nosy list and
there's no change note (since it would just duplicates the journal).
+ . Completely removed the bsddb3 module from the tests - will be reinstated
+ when the http://bsddb.sourceforge.net/'s bugs #439959 and #456408 are
+ dealt with. One is fixed in CVS, the other pending.
2001-08-08 - 0.2.6
diff --git a/README.txt b/README.txt
index 965a6b9ccd36eb1012304a5135c2a36e0f412b63..0c89029692379ad6d091ff95a7aad21f2f2deb51 100644 (file)
--- a/README.txt
+++ b/README.txt
. check the source file timestamps before reloading
cgi_client
. keep form fields in form on bad submission - only clear it if all ok
- . change notes should be handled using an auditor
5. Known Bugs
. date subtraction doesn't work correctly "if the dates cross leap years,
phases of the moon, ..."
cgi:
- . setting an issue to resolved, and no other changes, results in a change
- message with no indication of what changed
- . enabling a filter disables the current filter hidden fields...
+ . enabling a filter disables the current filter hidden fields.
6. Author
diff --git a/test/test_db.py b/test/test_db.py
index 1e1bbad6422ea0af14efe47353dd14e03ff66648..d5318b65500c600299c603b2a3f224e13a78cbf2 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.6 2001-08-07 00:24:43 richard Exp $
+# $Id: test_db.py,v 1.7 2001-08-29 06:23:59 richard Exp $
import unittest, os, shutil
except:
print 'bsddb module not found, skipping bsddb DBTestCase'
- try:
- import bsddb3
- l.append(unittest.makeSuite(bsddb3DBTestCase, 'test'))
- l.append(unittest.makeSuite(bsddb3ReadOnlyDBTestCase, 'test'))
- except:
- print 'bsddb3 module not found, skipping bsddb3 DBTestCase'
+# try:
+# import bsddb3
+# l.append(unittest.makeSuite(bsddb3DBTestCase, 'test'))
+# l.append(unittest.makeSuite(bsddb3ReadOnlyDBTestCase, 'test'))
+# except:
+# print 'bsddb3 module not found, skipping bsddb3 DBTestCase'
return unittest.TestSuite(l)
#
# $Log: not supported by cvs2svn $
+# Revision 1.6 2001/08/07 00:24:43 richard
+# stupid typo
+#
# Revision 1.5 2001/08/07 00:15:51 richard
# Added the copyright/license notice to (nearly) all files at request of
# Bizar Software.
diff --git a/test/test_init.py b/test/test_init.py
index 7603ed982936dd0eff24a0ef39f0dcb92e3236de..c63e80773cee42fcc548e28efbf1b1f1d758bf86 100644 (file)
--- a/test/test_init.py
+++ b/test/test_init.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: test_init.py,v 1.4 2001-08-07 00:24:43 richard Exp $
+# $Id: test_init.py,v 1.5 2001-08-29 06:23:59 richard Exp $
import unittest, os, shutil, errno, imp, sys
except:
print 'bsddb module not found, skipping bsddb DBTestCase'
- try:
- import bsddb3
- x = ClassicTestCase
- x.backend = 'bsddb3'
- l.append(unittest.makeSuite(x, 'test'))
- x = ExtendedTestCase
- x.backend = 'bsddb3'
- l.append(unittest.makeSuite(x, 'test'))
- except:
- print 'bsddb3 module not found, skipping bsddb3 DBTestCase'
+# try:
+# import bsddb3
+# x = ClassicTestCase
+# x.backend = 'bsddb3'
+# l.append(unittest.makeSuite(x, 'test'))
+# x = ExtendedTestCase
+# x.backend = 'bsddb3'
+# l.append(unittest.makeSuite(x, 'test'))
+# except:
+# print 'bsddb3 module not found, skipping bsddb3 DBTestCase'
return unittest.TestSuite(l)
#
# $Log: not supported by cvs2svn $
+# Revision 1.4 2001/08/07 00:24:43 richard
+# stupid typo
+#
# Revision 1.3 2001/08/07 00:15:51 richard
# Added the copyright/license notice to (nearly) all files at request of
# Bizar Software.