From 50cc82b7966f70aeb8c21d881be4ca2b3327f7bf Mon Sep 17 00:00:00 2001 From: Hajime Nakagami Date: Wed, 6 Mar 2013 00:21:54 +0900 Subject: [PATCH] mysql+cymysql test_types.py --- test/sql/test_types.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/sql/test_types.py b/test/sql/test_types.py index 0e6f1b5f03..3c981e539c 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 \ ( -- 2.47.2