summaryrefslogtreecommitdiff
path: root/test/sql/test_functions.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-11-17 13:45:23 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2013-11-17 13:45:23 -0500
commit59ca4633acd42d90dc01aef9a40373ee98080481 (patch)
tree41c46078729933e14d9b7ff4767b4a5a813f673a /test/sql/test_functions.py
parentd6545f7db78d8bd930685019678f6e7df056ed22 (diff)
downloadsqlalchemy-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_functions.py')
-rw-r--r--test/sql/test_functions.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/sql/test_functions.py b/test/sql/test_functions.py
index ee503dbb7..ee1d61f85 100644
--- a/test/sql/test_functions.py
+++ b/test/sql/test_functions.py
@@ -21,13 +21,12 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL):
functions._registry.clear()
def test_compile(self):
- for dialect in all_dialects(exclude=('sybase', 'access',
- 'informix', 'maxdb')):
+ for dialect in all_dialects(exclude=('sybase', )):
bindtemplate = BIND_TEMPLATES[dialect.paramstyle]
self.assert_compile(func.current_timestamp(),
"CURRENT_TIMESTAMP", dialect=dialect)
self.assert_compile(func.localtime(), "LOCALTIME", dialect=dialect)
- if dialect.name in ('firebird', 'maxdb'):
+ if dialect.name in ('firebird',):
self.assert_compile(func.nosuchfunction(),
"nosuchfunction", dialect=dialect)
else: