Code

fixes to unit tests
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 28 Feb 2003 03:33:25 +0000 (03:33 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 28 Feb 2003 03:33:25 +0000 (03:33 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1560 57a73879-2fb5-44c3-a270-3262357dd7e2

test/test_cgi.py
test/test_init.py
test/test_mailgw.py

index d8c49fb8b2ba0aff2109b833d2363775c10cbca9..b98388f92b8fd7cc9b89bf3f71a7f4b6f36957d3 100644 (file)
@@ -8,7 +8,7 @@
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 #
-# $Id: test_cgi.py,v 1.11 2003-02-18 06:15:21 richard Exp $
+# $Id: test_cgi.py,v 1.12 2003-02-28 03:33:25 richard Exp $
 
 import unittest, os, shutil, errno, sys, difflib, cgi, re
 
@@ -45,7 +45,8 @@ class FormTestCase(unittest.TestCase):
         except OSError, error:
             if error.errno not in (errno.ENOENT, errno.ESRCH): raise
         # create the instance
-        init.install(self.dirname, 'classic', 'anydbm')
+        init.install(self.dirname, 'classic')
+        init.write_select_db(self.dirname, 'anydbm')
         init.initialise(self.dirname, 'sekrit')
         # check we can load the package
         self.instance = instance.open(self.dirname)
index 8e89bc8fc987188a4bf3ee6e592986dd987395c1..6f1f318197591de24e0d1ec6a86fca8f4ca99c6a 100644 (file)
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: test_init.py,v 1.20 2002-09-24 01:59:44 richard Exp $
+# $Id: test_init.py,v 1.21 2003-02-28 03:33:25 richard Exp $
 
 import unittest, os, shutil, errno, imp, sys
 
@@ -43,7 +43,8 @@ class ClassicTestCase(MyTestCase):
         ae = self.assertEqual
 
         # create the instance
-        init.install(self.dirname, 'classic', self.backend)
+        init.install(self.dirname, 'classic')
+        init.write_select_db(self.dirname, self.backend)
         init.initialise(self.dirname, 'sekrit')
 
         # check we can load the package
index a2785ea3ca01dee9d25740595c50c522376fe8e4..d18c8b406721b45c9f8f0580f8228cd88d005615 100644 (file)
@@ -8,7 +8,7 @@
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 #
-# $Id: test_mailgw.py,v 1.39 2003-02-06 05:43:49 richard Exp $
+# $Id: test_mailgw.py,v 1.40 2003-02-28 03:33:25 richard Exp $
 
 import unittest, cStringIO, tempfile, os, shutil, errno, imp, sys, difflib
 
@@ -68,7 +68,8 @@ class MailgwTestCase(unittest.TestCase, DiffHelper):
         except OSError, error:
             if error.errno not in (errno.ENOENT, errno.ESRCH): raise
         # create the instance
-        init.install(self.dirname, 'classic', 'anydbm')
+        init.install(self.dirname, 'classic')
+        init.write_select_db(self.dirname, 'anydbm')
         init.initialise(self.dirname, 'sekrit')
         # check we can load the package
         self.instance = instance.open(self.dirname)