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')