diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-02-27 20:03:33 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-02-27 20:03:33 +0000 |
| commit | cd6af2e03b8ffba0c7d6b8906c178fd1aa742920 (patch) | |
| tree | 4da300a9f8441274624b3db49236322476954c07 /test/sql/test_rowcount.py | |
| parent | 8b1096eea4fdc081a803279c57226ac07481d788 (diff) | |
| download | sqlalchemy-cd6af2e03b8ffba0c7d6b8906c178fd1aa742920.tar.gz | |
working on pyodbc / mxodbc
Diffstat (limited to 'test/sql/test_rowcount.py')
| -rw-r--r-- | test/sql/test_rowcount.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/sql/test_rowcount.py b/test/sql/test_rowcount.py index 82301a4a5..6da25b914 100644 --- a/test/sql/test_rowcount.py +++ b/test/sql/test_rowcount.py @@ -4,6 +4,9 @@ from sqlalchemy.test import * class FoundRowsTest(TestBase, AssertsExecutionResults): """tests rowcount functionality""" + + __requires__ = ('sane_rowcount', ) + @classmethod def setup_class(cls): metadata = MetaData(testing.db) @@ -11,7 +14,9 @@ class FoundRowsTest(TestBase, AssertsExecutionResults): global employees_table employees_table = Table('employees', metadata, - Column('employee_id', Integer, Sequence('employee_id_seq', optional=True), primary_key=True), + Column('employee_id', Integer, + Sequence('employee_id_seq', optional=True), + primary_key=True), Column('name', String(50)), Column('department', String(1)), ) |
