From b627d23898bdbb188e677d7f1f9455eb76f325c4 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 23 Sep 2004 16:34:38 +0000 Subject: [PATCH] Added a test, though I haven't figured out how to fix this thing yet. --- test/test_Filter.py | 3 +++ 1 file changed, 3 insertions(+) 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)