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/sql/constraints.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/sql/constraints.py')
-rw-r--r-- | test/sql/constraints.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/constraints.py b/test/sql/constraints.py index ab08c6d98..c9b52da7c 100644 --- a/test/sql/constraints.py +++ b/test/sql/constraints.py @@ -63,7 +63,7 @@ class ConstraintTest(TestBase, AssertsExecutionResults): ) metadata.create_all() - @testing.fails_on('mysql') + @testing.fails_on('mysql', 'FIXME: unknown') def test_check_constraint(self): foo = Table('foo', metadata, Column('id', Integer, primary_key=True), |