summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 375b505)
raw | patch | inline | side by side (parent: 375b505)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 28 Feb 2003 03:33:25 +0000 (03:33 +0000) | ||
committer | richard <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 | patch | blob | history | |
test/test_init.py | patch | blob | history | |
test/test_mailgw.py | patch | blob | history |
diff --git a/test/test_cgi.py b/test/test_cgi.py
index d8c49fb8b2ba0aff2109b833d2363775c10cbca9..b98388f92b8fd7cc9b89bf3f71a7f4b6f36957d3 100644 (file)
--- a/test/test_cgi.py
+++ b/test/test_cgi.py
# 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
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)
diff --git a/test/test_init.py b/test/test_init.py
index 8e89bc8fc987188a4bf3ee6e592986dd987395c1..6f1f318197591de24e0d1ec6a86fca8f4ca99c6a 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.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
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
diff --git a/test/test_mailgw.py b/test/test_mailgw.py
index a2785ea3ca01dee9d25740595c50c522376fe8e4..d18c8b406721b45c9f8f0580f8228cd88d005615 100644 (file)
--- a/test/test_mailgw.py
+++ b/test/test_mailgw.py
# 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
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)