diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-03-07 12:36:35 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-03-07 12:36:35 -0500 |
| commit | a98bb5f0cd5d7ef51dbf0f04cc2ba1971768691f (patch) | |
| tree | b6a1dea1efe8f521500fe6c2e86c1099bcb8166e /test/sql | |
| parent | 029b79052cae9a74c9b4dceea92d8ec00595f175 (diff) | |
| parent | 50cc82b7966f70aeb8c21d881be4ca2b3327f7bf (diff) | |
| download | sqlalchemy-a98bb5f0cd5d7ef51dbf0f04cc2ba1971768691f.tar.gz | |
Merged in nakagami/sqlalchemy/cymysql (pull request #42)
cymysql support
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 \ ( |
