diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-03-24 11:33:53 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-03-24 11:33:53 -0400 |
commit | 2f150bee28525d49e7f36d2e0c7fbeda2352bc3a (patch) | |
tree | 677058b86afae6dd11308d21e71d170e0b0673b4 /test/sql/test_constraints.py | |
parent | 87d7076b49ec52d6f890d1dc56f61ea2eb83f3a6 (diff) | |
download | sqlalchemy-2f150bee28525d49e7f36d2e0c7fbeda2352bc3a.tar.gz |
- rename __multiple__ to __backend__, and apply __backend__ to a large number of tests.
- move out logging tests from test_execute to test_logging
Diffstat (limited to 'test/sql/test_constraints.py')
-rw-r--r-- | test/sql/test_constraints.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/sql/test_constraints.py b/test/sql/test_constraints.py index cb4b73ec8..b174ef3c1 100644 --- a/test/sql/test_constraints.py +++ b/test/sql/test_constraints.py @@ -14,6 +14,8 @@ from sqlalchemy.sql import table, column class ConstraintGenTest(fixtures.TestBase, AssertsExecutionResults): __dialect__ = 'default' + __backend__ = True + @testing.provide_metadata def test_pk_fk_constraint_create(self): |