From fd365e99949d6947e3e9745810d8ac5c35930e50 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 7 Feb 2005 05:52:42 +0000 Subject: [PATCH] Removed the revision tests, since we removed the revision command. --- plugins/Misc/test.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/plugins/Misc/test.py b/plugins/Misc/test.py index 632da16df..e758e2bc8 100644 --- a/plugins/Misc/test.py +++ b/plugins/Misc/test.py @@ -236,19 +236,5 @@ class MiscTestCase(ChannelPluginTestCase): def testAproposDoesntReturnNonCanonicalNames(self): self.assertNotRegexp('apropos exec', '_exec') - def testRevision(self): - self.assertNotError('revision Misc') - self.assertNotError('revision Misc.py') - self.assertNotError('revision') - - def testRevisionDoesNotLowerUnnecessarily(self): - self.assertNotError('load Math') - m1 = self.assertNotError('revision Math') - m2 = self.assertNotError('revision math') - self.assertEqual(m1, m2) - - def testRevisionIsCaseInsensitive(self): - self.assertNotError('revision misc') - # vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: