diff options
author | Fred Drake <fdrake@acm.org> | 2004-06-17 20:14:50 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2004-06-17 20:14:50 (GMT) |
commit | b8ab8b6da809f9ceecd715113b2c860235186b02 (patch) | |
tree | f788648daf81cb0a80838a5f0a622a3f91c792f7 /Lib/distutils/tests/test_install_scripts.py | |
parent | 9e1ac2496fd3a5e1126162b7734ff26aed4495df (diff) | |
download | cpython-b8ab8b6da809f9ceecd715113b2c860235186b02.zip cpython-b8ab8b6da809f9ceecd715113b2c860235186b02.tar.gz cpython-b8ab8b6da809f9ceecd715113b2c860235186b02.tar.bz2 |
move support code to a helper module to ease re-use
Diffstat (limited to 'Lib/distutils/tests/test_install_scripts.py')
-rw-r--r-- | Lib/distutils/tests/test_install_scripts.py | 41 |
1 files changed, 7 insertions, 34 deletions
diff --git a/Lib/distutils/tests/test_install_scripts.py b/Lib/distutils/tests/test_install_scripts.py index 824f733..0a11abf 100644 --- a/Lib/distutils/tests/test_install_scripts.py +++ b/Lib/distutils/tests/test_install_scripts.py @@ -1,37 +1,21 @@ """Tests for distutils.command.install_scripts.""" import os -import shutil -import tempfile import unittest from distutils.command.install_scripts import install_scripts from distutils.core import Distribution +from distutils.tests import support -class InstallScriptsTestCase(unittest.TestCase): - def setUp(self): - self.tempdirs = [] - - def tearDown(self): - while self.tempdirs: - d = self.tempdirs.pop() - shutil.rmtree(d) - - def mkdtemp(self): - """Create a temporary directory that will be cleaned up. - - Returns the path of the directory. - """ - d = tempfile.mkdtemp() - self.tempdirs.append(d) - return d +class InstallScriptsTestCase(support.TempdirManager, unittest.TestCase): def test_default_settings(self): dist = Distribution() - dist.command_obj["build"] = DummyCommand(build_scripts="/foo/bar") - dist.command_obj["install"] = DummyCommand( + dist.command_obj["build"] = support.DummyCommand( + build_scripts="/foo/bar") + dist.command_obj["install"] = support.DummyCommand( install_scripts="/splat/funk", force=1, skip_build=1, @@ -71,8 +55,8 @@ class InstallScriptsTestCase(unittest.TestCase): target = self.mkdtemp() dist = Distribution() - dist.command_obj["build"] = DummyCommand(build_scripts=source) - dist.command_obj["install"] = DummyCommand( + dist.command_obj["build"] = support.DummyCommand(build_scripts=source) + dist.command_obj["install"] = support.DummyCommand( install_scripts=target, force=1, skip_build=1, @@ -86,17 +70,6 @@ class InstallScriptsTestCase(unittest.TestCase): self.assert_(name in installed) -class DummyCommand: - """Class to store options for retrieval via set_undefined_options().""" - - def __init__(self, **kwargs): - for kw, val in kwargs.items(): - setattr(self, kw, val) - - def ensure_finalized(self): - pass - - def test_suite(): return unittest.makeSuite(InstallScriptsTestCase) |