summaryrefslogtreecommitdiff
path: root/tests/test_install.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-09-21 13:10:05 +0000
committerTarek Ziadé <ziade.tarek@gmail.com>2009-09-21 13:10:05 +0000
commitab2e256fe307738d2c0b4e9d4fa411b23f9be8c9 (patch)
tree4e1b7e9f5fe0c396e4d318d53ea6f4a4ad591c40 /tests/test_install.py
parentb2dfd2fe8b6c80780cfa28e5ca013124fb1f45b6 (diff)
downloadpython-setuptools-git-ab2e256fe307738d2c0b4e9d4fa411b23f9be8c9.tar.gz
Merged revisions 74990 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r74990 | tarek.ziade | 2009-09-21 15:01:54 +0200 (Mon, 21 Sep 2009) | 9 lines Merged revisions 74988 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r74988 | tarek.ziade | 2009-09-21 14:19:07 +0200 (Mon, 21 Sep 2009) | 1 line improved distutils test coverage: now the DEBUG mode is covered too (will help fix the issue #6954 in py3k branch) ........ ................
Diffstat (limited to 'tests/test_install.py')
-rw-r--r--tests/test_install.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/test_install.py b/tests/test_install.py
index d0ad5ce1..2087a0eb 100644
--- a/tests/test_install.py
+++ b/tests/test_install.py
@@ -6,6 +6,8 @@ import sys
import unittest
import site
+from test.support import captured_stdout
+
from distutils.command.install import install
from distutils.command import install as install_module
from distutils.command.install import INSTALL_SCHEMES
@@ -14,7 +16,6 @@ from distutils.errors import DistutilsOptionError
from distutils.tests import support
-
class InstallTestCase(support.TempdirManager,
support.LoggingSilencer,
unittest.TestCase):
@@ -183,6 +184,17 @@ class InstallTestCase(support.TempdirManager,
with open(cmd.record) as f:
self.assertEquals(len(f.readlines()), 1)
+ def test_debug_mode(self):
+ # this covers the code called when DEBUG is set
+ old_logs_len = len(self.logs)
+ install_module.DEBUG = True
+ try:
+ with captured_stdout() as stdout:
+ self.test_record()
+ finally:
+ install_module.DEBUG = False
+ self.assertTrue(len(self.logs) > old_logs_len)
+
def test_suite():
return unittest.makeSuite(InstallTestCase)