testing a full check case

This commit is contained in:
Tarek Ziadé 2009-04-11 15:14:17 +00:00
parent 942825f7de
commit c2936b786a
2 changed files with 8 additions and 1 deletions

View file

@ -85,6 +85,13 @@ class CheckTestCase(support.LoggingSilencer,
cmd.check_restructuredtext()
self.assertEquals(cmd._warnings, 0)
def test_check_all(self):
metadata = {'url': 'xxx', 'author': 'xxx'}
self.assertRaises(DistutilsSetupError, self._run,
{}, **{'strict': 1,
'restructuredtext': 1})
def test_suite():
return unittest.makeSuite(CheckTestCase)