From 8366d740d525e2a74fc7f11f94e7bc0219e34187 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 1 Jan 2004 19:46:29 +0000 Subject: [PATCH] Began **kwargs'ing tests (with getMsg). --- test/testsupport.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/testsupport.py b/test/testsupport.py index d64d01bc1..d12b8c5f2 100644 --- a/test/testsupport.py +++ b/test/testsupport.py @@ -51,6 +51,8 @@ import callbacks import Owner +network = True + nicks = ['fatjim','scn','moshez','LordVan','MetaCosm','pythong','fishfart', 'alb','d0rt','jemfinch','StyxAlso','fors','deltab','gd', 'hellz_hunter','are_j|pub_comp','jason_','dreid','sayke_','winjer', @@ -169,8 +171,8 @@ class PluginTestCase(unittest.TestCase): print 'Response: %r' % response return response - def getMsg(self, query, timeout=None): - return self._feedMsg(query, timeout=timeout) + def getMsg(self, query, **kwargs): + return self._feedMsg(query, **kwargs) def feedMsg(self, query, to=None, frm=None): """Just feeds it a message, that's all."""