diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2009-10-26 18:23:20 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2009-10-26 18:23:20 +0000 |
| commit | 62d206921043468c60deb0fdeaeff9f8e351d6b7 (patch) | |
| tree | f290f220371547cce8cd6116e8981aadcdfa4c95 /test/sql | |
| parent | bc714d614df349ba4ef35a2863ffe6e191881b26 (diff) | |
| download | sqlalchemy-62d206921043468c60deb0fdeaeff9f8e351d6b7.tar.gz | |
whats up with the native_unicode test on jython
Diffstat (limited to 'test/sql')
| -rw-r--r-- | test/sql/test_types.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/test/sql/test_types.py b/test/sql/test_types.py index c226b96ec..100ff8b78 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -262,10 +262,14 @@ class UnicodeTest(TestBase, AssertsExecutionResults): ( ('postgresql','psycopg2'), ('postgresql','pg8000'), - #('postgresql','zxjdbc'), # really ? why not pg - ('mysql','zxjdbc'), # but then yes for Mysql ? + ('postgresql','zxjdbc'), + ('mysql','zxjdbc'), ('sqlite','pysqlite'), - )) + )), \ + "name: %s driver %s returns_unicode_strings=%s" % \ + (testing.db.name, + testing.db.driver, + testing.db.dialect.returns_unicode_strings) def test_round_trip(self): unicodedata = u"Alors vous imaginez ma surprise, au lever du jour, quand une drôle de petit voix m’a réveillé. Elle disait: « S’il vous plaît… dessine-moi un mouton! »" |
