diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-04-17 14:34:49 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-04-17 14:34:49 (GMT) |
commit | f633ff4546a4d044803ea83901e8c4ea0ee60e87 (patch) | |
tree | e473055228447d362475bd31dc625797656e094a /Lib/distutils/tests | |
parent | 86c06bc47f10d591528deff855ef028169a18b52 (diff) | |
download | cpython-f633ff4546a4d044803ea83901e8c4ea0ee60e87.zip cpython-f633ff4546a4d044803ea83901e8c4ea0ee60e87.tar.gz cpython-f633ff4546a4d044803ea83901e8c4ea0ee60e87.tar.bz2 |
Merged revisions 71674 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r71674 | tarek.ziade | 2009-04-17 16:29:56 +0200 (Fri, 17 Apr 2009) | 1 line
DistutilsSetupError was not raised when one single warning occured
........
Diffstat (limited to 'Lib/distutils/tests')
-rw-r--r-- | Lib/distutils/tests/test_check.py | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/Lib/distutils/tests/test_check.py b/Lib/distutils/tests/test_check.py index 5e0c453..372bae3 100644 --- a/Lib/distutils/tests/test_check.py +++ b/Lib/distutils/tests/test_check.py @@ -72,17 +72,16 @@ class CheckTestCase(support.LoggingSilencer, self.assertEquals(cmd._warnings, 1) # let's see if we have an error with strict=1 - cmd = check(dist) - cmd.initialize_options() - cmd.strict = 1 - cmd.ensure_finalized() - self.assertRaises(DistutilsSetupError, cmd.run) + metadata = {'url': 'xxx', 'author': 'xxx', + 'author_email': 'xxx', + 'name': 'xxx', 'version': 'xxx', + 'long_description': broken_rest} + self.assertRaises(DistutilsSetupError, self._run, metadata, + **{'strict': 1, 'restructuredtext': 1}) # and non-broken rest - rest = 'title\n=====\n\ntest' - pkg_info, dist = self.create_dist(long_description=rest) - cmd = check(dist) - cmd.check_restructuredtext() + metadata['long_description'] = 'title\n=====\n\ntest' + cmd = self._run(metadata, strict=1, restructuredtext=1) self.assertEquals(cmd._warnings, 0) def test_check_all(self): |