diff options
| author | Jason Kirtland <jek@discorporate.us> | 2007-08-21 00:47:48 +0000 |
|---|---|---|
| committer | Jason Kirtland <jek@discorporate.us> | 2007-08-21 00:47:48 +0000 |
| commit | 83eb2431247ff3392a984f034fb3ffd009d81009 (patch) | |
| tree | 631e25d57f74432d7fd22086dae24c467bdeb014 /test | |
| parent | e9015b2d05e7438f7c48e4f59b5a79aec2d85970 (diff) | |
| download | sqlalchemy-83eb2431247ff3392a984f034fb3ffd009d81009.tar.gz | |
added stub/import tests for all dialects
post-refactor fix for access dialect
Diffstat (limited to 'test')
| -rw-r--r-- | test/dialect/access.py | 10 | ||||
| -rw-r--r-- | test/dialect/alltests.py | 3 | ||||
| -rw-r--r-- | test/dialect/firebird.py | 10 | ||||
| -rw-r--r-- | test/dialect/informix.py | 10 |
4 files changed, 33 insertions, 0 deletions
diff --git a/test/dialect/access.py b/test/dialect/access.py new file mode 100644 index 000000000..0aa75930a --- /dev/null +++ b/test/dialect/access.py @@ -0,0 +1,10 @@ +import testbase +from sqlalchemy import * +from sqlalchemy.databases import access +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 diff --git a/test/dialect/alltests.py b/test/dialect/alltests.py index aeb754d5f..9058fb04c 100644 --- a/test/dialect/alltests.py +++ b/test/dialect/alltests.py @@ -7,6 +7,9 @@ def suite(): 'dialect.postgres', 'dialect.oracle', 'dialect.mssql', + 'dialect.access', + 'dialect.informix', + 'dialect.firebird', ) alltests = unittest.TestSuite() for name in modules_to_test: diff --git a/test/dialect/firebird.py b/test/dialect/firebird.py new file mode 100644 index 000000000..87d9618fb --- /dev/null +++ b/test/dialect/firebird.py @@ -0,0 +1,10 @@ +import testbase +from sqlalchemy import * +from sqlalchemy.databases import firebird +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 diff --git a/test/dialect/informix.py b/test/dialect/informix.py new file mode 100644 index 000000000..2e7dbe39c --- /dev/null +++ b/test/dialect/informix.py @@ -0,0 +1,10 @@ +import testbase +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 |
