Removed the revision tests, since we removed the revision command.

This commit is contained in:
Jeremy Fincher 2005-02-07 05:52:42 +00:00
parent 476a620fe4
commit fd365e9994

View File

@ -236,19 +236,5 @@ class MiscTestCase(ChannelPluginTestCase):
def testAproposDoesntReturnNonCanonicalNames(self): def testAproposDoesntReturnNonCanonicalNames(self):
self.assertNotRegexp('apropos exec', '_exec') 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: # vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: