diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-08-13 16:53:38 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-08-13 16:53:38 -0400 |
commit | 2937f94e4a05be5b8db268b47745157a143ca30e (patch) | |
tree | cbc5b1eb4dfdc1a1bef9a0eb592ea716f45bec1f /test/sql/test_query.py | |
parent | 37fad88b84db61fba0a09a1c76bcf95d055aa6e2 (diff) | |
download | sqlalchemy-2937f94e4a05be5b8db268b47745157a143ca30e.tar.gz |
- all tests pass
Diffstat (limited to 'test/sql/test_query.py')
-rw-r--r-- | test/sql/test_query.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/sql/test_query.py b/test/sql/test_query.py index 2541d0711..1ae15707a 100644 --- a/test/sql/test_query.py +++ b/test/sql/test_query.py @@ -1012,14 +1012,6 @@ class QueryTest(fixtures.TestBase): r = testing.db.execute('select user_name from query_users').first() eq_(len(r), 1) - @testing.uses_deprecated(r'.*which subclass Executable') - def test_cant_execute_join(self): - try: - users.join(addresses).execute() - except exc.StatementError, e: - assert str(e).startswith('Not an executable clause ') - - def test_column_order_with_simple_query(self): # should return values in column definition order |