summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/support.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-03-31 20:50:59 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-03-31 20:50:59 (GMT)
commit023862890f9f3de1c71b1e98d59d675312e88afb (patch)
tree7cb79ee5fb9c9c81b44c6dc44286291f37cee2d4 /Lib/distutils/tests/support.py
parentc7cd138bc2127079642ee8a3f2fa9d58c889dec0 (diff)
downloadcpython-023862890f9f3de1c71b1e98d59d675312e88afb.zip
cpython-023862890f9f3de1c71b1e98d59d675312e88afb.tar.gz
cpython-023862890f9f3de1c71b1e98d59d675312e88afb.tar.bz2
added tests for the clean command
Diffstat (limited to 'Lib/distutils/tests/support.py')
-rw-r--r--Lib/distutils/tests/support.py21
1 files changed, 19 insertions, 2 deletions
diff --git a/Lib/distutils/tests/support.py b/Lib/distutils/tests/support.py
index fbbf35d..578cf40 100644
--- a/Lib/distutils/tests/support.py
+++ b/Lib/distutils/tests/support.py
@@ -4,7 +4,7 @@ import shutil
import tempfile
from distutils import log
-
+from distutils.core import Distribution
class LoggingSilencer(object):
@@ -42,7 +42,7 @@ class TempdirManager(object):
self.tempdirs.append(d)
return d
- def write_file(self, path, content):
+ def write_file(self, path, content='xxx'):
"""Writes a file in the given path.
@@ -56,6 +56,23 @@ class TempdirManager(object):
finally:
f.close()
+ def create_dist(self, pkg_name='foo', **kw):
+ """Will generate a test environment.
+
+ This function creates:
+ - a Distribution instance using keywords
+ - a temporary directory with a package structure
+
+ It returns the package directory and the distribution
+ instance.
+ """
+ tmp_dir = self.mkdtemp()
+ pkg_dir = os.path.join(tmp_dir, pkg_name)
+ os.mkdir(pkg_dir)
+ dist = Distribution(attrs=kw)
+
+ return pkg_dir, dist
+
class DummyCommand:
"""Class to store options for retrieval via set_undefined_options()."""