diff options
| author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-04-12 14:53:51 (GMT) |
|---|---|---|
| committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-04-12 14:53:51 (GMT) |
| commit | aa48798f1e99f9ca6ce0e859288b5a7d0419d539 (patch) | |
| tree | 54a668d3600430d26f0671ddf044ef25519306d9 /Lib/distutils/tests | |
| parent | 3c4a5463b2e022cc43478de78a0afbd283b3ddef (diff) | |
| download | cpython-aa48798f1e99f9ca6ce0e859288b5a7d0419d539.zip cpython-aa48798f1e99f9ca6ce0e859288b5a7d0419d539.tar.gz cpython-aa48798f1e99f9ca6ce0e859288b5a7d0419d539.tar.bz2 | |
removed the print statements and added a test
Diffstat (limited to 'Lib/distutils/tests')
| -rw-r--r-- | Lib/distutils/tests/test_config_cmd.py | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Lib/distutils/tests/test_config_cmd.py b/Lib/distutils/tests/test_config_cmd.py new file mode 100644 index 0000000..6fd1776 --- /dev/null +++ b/Lib/distutils/tests/test_config_cmd.py @@ -0,0 +1,42 @@ +"""Tests for distutils.command.config.""" +import unittest +import os + +from distutils.command.config import dump_file +from distutils.tests import support +from distutils import log + +class ConfigTestCase(support.LoggingSilencer, + support.TempdirManager, + unittest.TestCase): + + def _info(self, msg): + for line in msg.splitlines(): + self._logs.append(line) + + def setUp(self): + super(ConfigTestCase, self).setUp() + self._logs = [] + self.old_log = log.info + log.info = self._info + + def tearDown(self): + log.info = self.old_log + super(ConfigTestCase, self).tearDown() + + def test_dump_file(self): + this_file = os.path.splitext(__file__)[0] + '.py' + f = open(this_file) + try: + numlines = len(f.readlines()) + finally: + f.close() + + dump_file(this_file, 'I am the header') + self.assertEquals(len(self._logs), numlines+1) + +def test_suite(): + return unittest.makeSuite(ConfigTestCase) + +if __name__ == "__main__": + unittest.main(defaultTest="test_suite") |
