diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-11-17 13:45:23 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-11-17 13:45:23 -0500 |
| commit | 59ca4633acd42d90dc01aef9a40373ee98080481 (patch) | |
| tree | 41c46078729933e14d9b7ff4767b4a5a813f673a /test/sql/test_defaults.py | |
| parent | d6545f7db78d8bd930685019678f6e7df056ed22 (diff) | |
| download | sqlalchemy-59ca4633acd42d90dc01aef9a40373ee98080481.tar.gz | |
- remove informix dialect, moved out to https://bitbucket.org/zzzeek/sqlalchemy_informixdb
- remove informix, maxdb, access symbols from tests etc.
Diffstat (limited to 'test/sql/test_defaults.py')
| -rw-r--r-- | test/sql/test_defaults.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/sql/test_defaults.py b/test/sql/test_defaults.py index 56b7971b2..4a17c1cda 100644 --- a/test/sql/test_defaults.py +++ b/test/sql/test_defaults.py @@ -45,7 +45,7 @@ class DefaultTest(fixtures.TestBase): # since its a "branched" connection conn.close() - use_function_defaults = testing.against('postgresql', 'mssql', 'maxdb') + use_function_defaults = testing.against('postgresql', 'mssql') is_oracle = testing.against('oracle') class MyClass(object): @@ -73,9 +73,7 @@ class DefaultTest(fixtures.TestBase): f2 = sa.select([func.length('abcdefghijk')], bind=db).scalar() def1 = currenttime deftype = sa.Date - if testing.against('maxdb'): - def2 = sa.text("curdate") - elif testing.against('mssql'): + if testing.against('mssql'): def2 = sa.text("getdate()") else: def2 = sa.text("current_date") |
