summaryrefslogtreecommitdiff
path: root/test/sql/alltests.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/sql/alltests.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/sql/alltests.py')
-rw-r--r--test/sql/alltests.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/sql/alltests.py b/test/sql/alltests.py
index 5f5c68904..f49cf14d4 100644
--- a/test/sql/alltests.py
+++ b/test/sql/alltests.py
@@ -1,4 +1,4 @@
-import testbase
+import testenv; testenv.configure_for_tests()
import unittest
@@ -8,20 +8,20 @@ def suite():
'sql.constraints',
'sql.generative',
-
+
# SQL syntax
'sql.select',
'sql.selectable',
- 'sql.case_statement',
+ 'sql.case_statement',
'sql.labels',
'sql.unicode',
-
+
# assorted round-trip tests
'sql.functions',
'sql.query',
'sql.quote',
'sql.rowcount',
-
+
# defaults, sequences (postgres/oracle)
'sql.defaults',
)
@@ -34,4 +34,4 @@ def suite():
return alltests
if __name__ == '__main__':
- testbase.main(suite())
+ testenv.main(suite())