From 0a3b05f1fb10356908e045db026a1cdb57bbc903 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 11 Nov 2003 11:43:51 +0000 Subject: [PATCH] Moved action to Misc from Utilities. --- test/test_Misc.py | 4 ++++ test/test_Utilities.py | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/test_Misc.py b/test/test_Misc.py index 5e46e664d..767291e50 100644 --- a/test/test_Misc.py +++ b/test/test_Misc.py @@ -33,6 +33,10 @@ from test import * class MiscTestCase(ChannelPluginTestCase, PluginDocumentation): plugins = ('Misc', 'Utilities', 'Gameknot', 'Ctcp') + def testAction(self): + self.assertAction('action moos', 'moos') + self.assertAction('action','') + def testReplyWhenNotCommand(self): try: conf.replyWhenNotCommand = True diff --git a/test/test_Utilities.py b/test/test_Utilities.py index 6b874ddb7..0fc602d77 100644 --- a/test/test_Utilities.py +++ b/test/test_Utilities.py @@ -66,10 +66,6 @@ class UtilitiesTestCase(PluginTestCase, PluginDocumentation): m = self.getMsg('cpustats') self.assertResponse('echo "%s"' % m.args[1], m.args[1]) - def testAction(self): - self.assertAction('action moos', 'moos') - self.assertAction('action','') - def testRe(self): self.assertResponse('re "m/My children/" [cpustats]', 'My children') self.assertResponse('re s/user/luser/g user user', 'luser luser')