diff options
author | Hajime Nakagami <nakagami@gmail.com> | 2013-03-06 00:21:54 +0900 |
---|---|---|
committer | Hajime Nakagami <nakagami@gmail.com> | 2013-03-06 00:21:54 +0900 |
commit | 50cc82b7966f70aeb8c21d881be4ca2b3327f7bf (patch) | |
tree | a586473e4cdd89b8ebe5c3b64e0164b7669030aa /test/sql | |
parent | a40c50c3dba014bc2bb71d35e81034b09b29a7ab (diff) | |
download | sqlalchemy-50cc82b7966f70aeb8c21d881be4ca2b3327f7bf.tar.gz |
mysql+cymysql test_types.py
Diffstat (limited to 'test/sql')
-rw-r--r-- | test/sql/test_types.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/sql/test_types.py b/test/sql/test_types.py index 0e6f1b5f0..3c981e539 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -690,6 +690,16 @@ class UnicodeTest(fixtures.TestBase): ('charset' in testing.db.url.query) ) + elif testing.against('mysql+cymysql'): + eq_( + testing.db.dialect.returns_unicode_strings, + # Py3K + #True + # Py2K + False + # end Py2K + ) + else: expected = (testing.db.name, testing.db.driver) in \ ( |