Forgot to remove the urlSnarfer test.

This commit is contained in:
Jeremy Fincher 2004-09-30 15:02:52 +00:00
parent 9914f2d28e
commit 43fbd5ac77
1 changed files with 0 additions and 25 deletions

View File

@ -60,31 +60,6 @@ class FunctionsTest(SupyTestCase):
self.assertEqual(privmsgs.getArgs(args, required=0, optional=1),
' '.join(args))
class UrlSnarferTestCase(PluginTestCase):
plugins = ()
class URL1(callbacks.PrivmsgCommandAndRegexp):
regexps = ['F', 'G']
def __init__(self):
self.FCalled = False
self.GCalled = False
callbacks.PrivmsgCommandAndRegexp.__init__(self)
def F(self, irc, msg, match):
r"."
self.FCalled = True
F = privmsgs.urlSnarfer(F)
def G(self, irc, msg, match):
r"."
self.GCalled = True
G = privmsgs.urlSnarfer(G)
def test(self):
cb = self.URL1()
self.irc.addCallback(cb)
self.assertNoResponse('foo', 1)
self.failUnless(cb.FCalled and cb.GCalled)
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: