diff options
author | Luke Plant <L.Plant.98@cantab.net> | 2015-10-19 12:06:08 +0100 |
---|---|---|
committer | Luke Plant <L.Plant.98@cantab.net> | 2015-10-19 12:06:08 +0100 |
commit | bfc525457225a7c0a45553d0fcf29592230e9855 (patch) | |
tree | 1dea98bcf165e2acfc16674708621dd743e0aa13 /setuptools/tests/files.py | |
parent | d1b750124e38d63b26a96e8c0921c02de3b0869d (diff) | |
download | external_python_setuptools-bfc525457225a7c0a45553d0fcf29592230e9855.tar.gz external_python_setuptools-bfc525457225a7c0a45553d0fcf29592230e9855.tar.bz2 external_python_setuptools-bfc525457225a7c0a45553d0fcf29592230e9855.zip |
Added test utility for building files quickly.
And made use of it in test_egg_info.
Diffstat (limited to 'setuptools/tests/files.py')
-rw-r--r-- | setuptools/tests/files.py | 32 |
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) |