diff options
author | Jason Kirtland <jek@discorporate.us> | 2008-01-12 22:03:42 +0000 |
---|---|---|
committer | Jason Kirtland <jek@discorporate.us> | 2008-01-12 22:03:42 +0000 |
commit | 17d3c8764e020379e54053bca0b0a2bc71d48aa0 (patch) | |
tree | 0b46f1ddc57292b8f5bfbc28ab1679230f63e426 /test/dialect/informix.py | |
parent | c194962019d1bc7322e20b82c33aa1bab3bc2a28 (diff) | |
download | sqlalchemy-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/dialect/informix.py')
-rw-r--r-- | test/dialect/informix.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/dialect/informix.py b/test/dialect/informix.py index 2e7dbe39c..da518075b 100644 --- a/test/dialect/informix.py +++ b/test/dialect/informix.py @@ -1,10 +1,15 @@ -import testbase +import testenv; testenv.configure_for_tests() from sqlalchemy import * from sqlalchemy.databases import informix from testlib import * + class BasicTest(AssertMixin): # A simple import of the database/ module should work on all systems. def test_import(self): # we got this far, right? return True + + +if __name__ == "__main__": + testenv.main() |