summaryrefslogtreecommitdiff
path: root/test/testbase.py
diff options
context:
space:
mode:
authorJason Kirtland <jek@discorporate.us>2008-01-12 22:03:42 +0000
committerJason Kirtland <jek@discorporate.us>2008-01-12 22:03:42 +0000
commit17d3c8764e020379e54053bca0b0a2bc71d48aa0 (patch)
tree0b46f1ddc57292b8f5bfbc28ab1679230f63e426 /test/testbase.py
parentc194962019d1bc7322e20b82c33aa1bab3bc2a28 (diff)
downloadsqlalchemy-17d3c8764e020379e54053bca0b0a2bc71d48aa0.tar.gz
- testbase is gone, replaced by testenv
- Importing testenv has no side effects- explicit functions provide similar behavior to the old immediate behavior of testbase - testing.db has the configured db - Fixed up the perf/* scripts
Diffstat (limited to 'test/testbase.py')
-rw-r--r--test/testbase.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/testbase.py b/test/testbase.py
deleted file mode 100644
index 1195db340..000000000
--- a/test/testbase.py
+++ /dev/null
@@ -1,14 +0,0 @@
-"""First import for all test cases, sets sys.path and loads configuration."""
-
-__all__ = 'db',
-
-import sys, os, logging
-sys.path.insert(0, os.path.join(os.getcwd(), 'lib'))
-logging.basicConfig()
-
-import testlib.config
-testlib.config.configure()
-
-from testlib.testing import main
-db = testlib.config.db
-