Added test for pydoc assert.

This commit is contained in:
Jeremy Fincher 2003-09-03 18:18:51 +00:00
parent 2e23c68afb
commit a002393085
1 changed files with 1 additions and 0 deletions

View File

@ -78,6 +78,7 @@ class FunCommandsTest(PluginTestCase):
def testPydoc(self):
self.assertNotError('pydoc str')
self.assertError('pydoc foobar')
self.assertError('pydoc assert')
def testOrd(self):
for c in map(chr, range(256)):