diff --git a/test/test_Filter.py b/test/test_Filter.py index 04c0a9827..e64e3ec7b 100644 --- a/test/test_Filter.py +++ b/test/test_Filter.py @@ -67,6 +67,9 @@ class FilterTest(ChannelPluginTestCase, PluginDocumentation): for s in nicks[:10]: # 10 is probably enough. self.assertResponse('rot13 [rot13 %s]' % s, s) + def testRot13HandlesNonAsciiStuff(self): + self.assertNotError('rot13 \xe4') + def testHexlifyUnhexlify(self): for s in nicks[:10]: # 10, again, is probably enough. self.assertResponse('unhexlify [hexlify %s]' % s, s)