From 5b3b6166715d4a7698ff48534c0d313b7cd84afd Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 18 Feb 2005 02:44:52 +0000 Subject: [PATCH] Forgot to remove the tests for getCommands. --- test/test_callbacks.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/test_callbacks.py b/test/test_callbacks.py index 869bbe604..6fe851d80 100644 --- a/test/test_callbacks.py +++ b/test/test_callbacks.py @@ -254,16 +254,6 @@ class FunctionsTestCase(SupyTestCase): self.assertEqual(callbacks.reply(msg, 'blah', to='blah', private=True), ircmsgs.privmsg('blah', 'blah')) - def testGetCommands(self): - self.assertEqual(callbacks.getCommands(['foo']), ['foo']) - self.assertEqual(callbacks.getCommands(['foo', 'bar']), ['foo']) - self.assertEqual(callbacks.getCommands(['foo', ['bar', 'baz']]), - ['foo', 'bar']) - self.assertEqual(callbacks.getCommands(['foo', 'bar', ['baz']]), - ['foo', 'baz']) - self.assertEqual(callbacks.getCommands(['foo', ['bar'], ['baz']]), - ['foo', 'bar', 'baz']) - def testTokenize(self): self.assertEqual(callbacks.tokenize(''), []) self.assertEqual(callbacks.tokenize('foo'), ['foo'])