From: Nathan Bird Date: Wed, 3 Feb 2010 22:01:47 +0000 (-0500) Subject: 2 tests for sending non multibyte characters to the database and back. Not sure how... X-Git-Tag: v5.0.0~19 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=cac353a1dbe8d0d6338aa4b94037df131f355538 2 tests for sending non multibyte characters to the database and back. Not sure how to handle this on unicode. --- diff --git a/tests/test-basic.lisp b/tests/test-basic.lisp index 98e9861..2c13d80 100644 --- a/tests/test-basic.lisp +++ b/tests/test-basic.lisp @@ -228,6 +228,15 @@ ))) nil) + (deftest :basic/i18n/1 + (first (query "SELECT 'Iñtërnâtiônàlizætiøn'" + :flatp t :field-names nil)) + "Iñtërnâtiônàlizætiøn") + + (deftest :basic/i18n/2 + (first (query "SELECT 'Iñtërnâtiônàližætiøn'" + :flatp t :field-names nil)) + "Iñtërnâtiônàližætiøn") ))