From bbe65a39a6557f1f0a780deda03ac61d4dcf58fe Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Mon, 21 Jan 2013 20:20:26 +0100 Subject: [PATCH] Utilities: Add tests for unicode characters. --- plugins/Utilities/test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/Utilities/test.py b/plugins/Utilities/test.py index 753b010a4..983e1f7ff 100644 --- a/plugins/Utilities/test.py +++ b/plugins/Utilities/test.py @@ -45,6 +45,8 @@ class UtilitiesTestCase(PluginTestCase): def testEcho(self): self.assertHelp('echo') self.assertResponse('echo foo', 'foo') + self.assertResponse('echo 好', '好') + self.assertResponse('echo "好"', '好') def testEchoDollarOneRepliesDollarOne(self): self.assertResponse('echo $1', '$1')