summaryrefslogtreecommitdiff
path: root/test/engine/reflection.py
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2008-12-12 03:41:05 +0000
committerMichael Trier <mtrier@gmail.com>2008-12-12 03:41:05 +0000
commit1d90146210b0919294a99468a916d4084fc14c7d (patch)
tree75bf422e326289f225adc399675d9a316486878a /test/engine/reflection.py
parentaaac4520d3a4d1b2b73403bedaeb67d9cf26409c (diff)
downloadsqlalchemy-1d90146210b0919294a99468a916d4084fc14c7d.tar.gz
Modified fails_on testing decorator to take a reason for the failure.
This should assist with helping to document the reasons for testing failures. Currently unspecified failures are defaulted to 'FIXME: unknown'.
Diffstat (limited to 'test/engine/reflection.py')
-rw-r--r--test/engine/reflection.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/engine/reflection.py b/test/engine/reflection.py
index e478e7c7a..a04e21854 100644
--- a/test/engine/reflection.py
+++ b/test/engine/reflection.py
@@ -675,9 +675,10 @@ class SchemaTest(TestBase):
assert buf.index("CREATE TABLE someschema.table2") > -1
@testing.crashes('firebird', 'No schema support')
- @testing.fails_on('sqlite')
+ @testing.fails_on('sqlite', 'FIXME: unknown')
# fixme: revisit these below.
- @testing.fails_on('access', 'sybase')
+ @testing.fails_on('access', 'FIXME: unknown')
+ @testing.fails_on('sybase', 'FIXME: unknown')
def test_explicit_default_schema(self):
engine = testing.db