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/engine/test_reflection.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/engine/test_reflection.py')
-rw-r--r-- | test/engine/test_reflection.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/engine/test_reflection.py b/test/engine/test_reflection.py index e7baa9d56..a3b0ecdb5 100644 --- a/test/engine/test_reflection.py +++ b/test/engine/test_reflection.py @@ -754,10 +754,6 @@ class ReflectionTest(fixtures.TestBase, ComparesTables): @testing.crashes('oracle', 'FIXME: unknown, confirm not fails_on') - @testing.fails_on('+informixdb', - "FIXME: should be supported via the " - "DELIMITED env var but that breaks " - "everything else for now") @testing.provide_metadata def test_reserved(self): @@ -774,7 +770,7 @@ class ReflectionTest(fixtures.TestBase, ComparesTables): # There's currently no way to calculate identifier case # normalization in isolation, so... - if testing.against('firebird', 'oracle', 'maxdb'): + if testing.against('firebird', 'oracle'): check_col = 'TRUE' else: check_col = 'true' |