summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/tests/test_command_upload_docs.py
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-10-19 06:49:20 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-10-19 06:49:20 (GMT)
commitf3f283a1cbd8b87c911edc0e93baf3d0bfec672e (patch)
tree83cd6088fa077e31c04c42148318539538d8ff65 /Lib/packaging/tests/test_command_upload_docs.py
parent79d9c42b04813dc81d91127ec0ffb6d4735e2c0e (diff)
downloadcpython-f3f283a1cbd8b87c911edc0e93baf3d0bfec672e.zip
cpython-f3f283a1cbd8b87c911edc0e93baf3d0bfec672e.tar.gz
cpython-f3f283a1cbd8b87c911edc0e93baf3d0bfec672e.tar.bz2
Clean up some idioms in packaging tests.
- Use os.makedirs (I had forgotten about it!) - Let TempdirManager.write_file call os.path.join for us - Remove custom command added by test_dist - Use a skip instead of hiding a method with an underscore - Address pyflakes warnings
Diffstat (limited to 'Lib/packaging/tests/test_command_upload_docs.py')
-rw-r--r--Lib/packaging/tests/test_command_upload_docs.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/packaging/tests/test_command_upload_docs.py b/Lib/packaging/tests/test_command_upload_docs.py
index 4162e2a..803e733 100644
--- a/Lib/packaging/tests/test_command_upload_docs.py
+++ b/Lib/packaging/tests/test_command_upload_docs.py
@@ -71,9 +71,8 @@ class UploadDocsTestCase(support.TempdirManager,
if sample_dir is None:
sample_dir = self.mkdtemp()
os.mkdir(os.path.join(sample_dir, "docs"))
- self.write_file(os.path.join(sample_dir, "docs", "index.html"),
- "Ce mortel ennui")
- self.write_file(os.path.join(sample_dir, "index.html"), "Oh la la")
+ self.write_file((sample_dir, "docs", "index.html"), "Ce mortel ennui")
+ self.write_file((sample_dir, "index.html"), "Oh la la")
return sample_dir
def test_zip_dir(self):