summaryrefslogtreecommitdiff
path: root/setuptools/tests/files.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-12-25 10:09:45 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-12-25 10:09:45 -0500
commit41eb0370e323d67715aebb1404890709c50cd018 (patch)
tree12cc39ee761d6fb0284c9883f907c7112587225b /setuptools/tests/files.py
parent3172bf9505e5d6b6f95b8b6a7f3dbde9cfe4ce48 (diff)
parenta9c3739984908d8ed9e902e3a6efe21f031c2908 (diff)
downloadpython-setuptools-git-41eb0370e323d67715aebb1404890709c50cd018.tar.gz
Merged pull request #151 - prep work for issue #450.
Diffstat (limited to 'setuptools/tests/files.py')
-rw-r--r--setuptools/tests/files.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/setuptools/tests/files.py b/setuptools/tests/files.py
new file mode 100644
index 00000000..4364241b
--- /dev/null
+++ b/setuptools/tests/files.py
@@ -0,0 +1,32 @@
+import os
+
+
+def build_files(file_defs, prefix=""):
+ """
+ Build a set of files/directories, as described by the file_defs dictionary.
+
+ Each key/value pair in the dictionary is interpreted as a filename/contents
+ pair. If the contents value is a dictionary, a directory is created, and the
+ dictionary interpreted as the files within it, recursively.
+
+ For example:
+
+ {"README.txt": "A README file",
+ "foo": {
+ "__init__.py": "",
+ "bar": {
+ "__init__.py": "",
+ },
+ "baz.py": "# Some code",
+ }
+ }
+ """
+ for name, contents in file_defs.items():
+ full_name = os.path.join(prefix, name)
+ if isinstance(contents, dict):
+ if not os.path.exists(full_name):
+ os.makedirs(full_name)
+ build_files(contents, prefix=full_name)
+ else:
+ with open(full_name, 'w') as f:
+ f.write(contents)