summaryrefslogtreecommitdiff
path: root/test/engine/reflection.py
diff options
context:
space:
mode:
authorJason Kirtland <jek@discorporate.us>2008-05-14 22:09:23 +0000
committerJason Kirtland <jek@discorporate.us>2008-05-14 22:09:23 +0000
commitdd20ca5cb9eb0361f22023437d25a5bbb53f6871 (patch)
treef033f05e3a273456d7e6100ce1897ba89849168f /test/engine/reflection.py
parentb2504db4f72e64981f27b796fcfd50c3c07fd606 (diff)
downloadsqlalchemy-dd20ca5cb9eb0361f22023437d25a5bbb53f6871.tar.gz
- Removed @unsupported
Diffstat (limited to 'test/engine/reflection.py')
-rw-r--r--test/engine/reflection.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/engine/reflection.py b/test/engine/reflection.py
index ebb79154e..3995fdedc 100644
--- a/test/engine/reflection.py
+++ b/test/engine/reflection.py
@@ -418,7 +418,7 @@ class ReflectionTest(TestBase, ComparesTables):
meta.drop_all()
- @testing.unsupported('oracle', 'FIXME: unknown, confirm not fails_on')
+ @testing.crashes('oracle', 'FIXME: unknown, confirm not fails_on')
def testreserved(self):
# check a table that uses an SQL reserved name doesn't cause an error
meta = MetaData(testing.db)
@@ -676,7 +676,7 @@ class SchemaTest(TestBase):
assert buf.index("CREATE TABLE someschema.table1") > -1
assert buf.index("CREATE TABLE someschema.table2") > -1
- @testing.unsupported('firebird', 'FIXME: unknown- no schema support in db?')
+ @testing.crashes('firebird', 'FIXME: unknown- no schema support in db?')
@testing.fails_on('sqlite')
# fixme: revisit these below.
@testing.fails_on('access', 'oracle', 'mssql', 'sybase')