diff options
author | Michael Trier <mtrier@gmail.com> | 2008-12-12 03:41:05 +0000 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-12-12 03:41:05 +0000 |
commit | 1d90146210b0919294a99468a916d4084fc14c7d (patch) | |
tree | 75bf422e326289f225adc399675d9a316486878a /test/engine/reflection.py | |
parent | aaac4520d3a4d1b2b73403bedaeb67d9cf26409c (diff) | |
download | sqlalchemy-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.py | 5 |
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 |