diff options
| author | ?ric Araujo <merwok@netwok.org> | 2011-11-12 00:33:44 +0100 |
|---|---|---|
| committer | ?ric Araujo <merwok@netwok.org> | 2011-11-12 00:33:44 +0100 |
| commit | b160fba2c0cbad389abc1bdbc94c82c1a26edfc9 (patch) | |
| tree | a29e937238959c3cf9aa095c185b6d635bacb4bb /distutils2/tests/test_create.py | |
| parent | ece9f034f63215cffa88e1ccec68f70261e03c38 (diff) | |
| download | disutils2-b160fba2c0cbad389abc1bdbc94c82c1a26edfc9.tar.gz | |
Clean up some idioms in tests.
- Use os.makedirs (I had forgotten about it!)
- Let TempdirManager.write_file call os.path.join for us
- Let TempdirManager.tearDown go back to the previous working directory
for us
- Use a skip instead of hiding a method with an underscore
- Reset the finalized attribute of command objects before calling
ensure_finalized a second time, so that it?s not a no-op
- Address pyflakes warnings
Diffstat (limited to 'distutils2/tests/test_create.py')
| -rw-r--r-- | distutils2/tests/test_create.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/distutils2/tests/test_create.py b/distutils2/tests/test_create.py index a268c4f..b0b488f 100644 --- a/distutils2/tests/test_create.py +++ b/distutils2/tests/test_create.py @@ -82,8 +82,7 @@ class CreateTestCase(support.TempdirManager, os.mkdir(os.path.join(tempdir, dir_)) for file_ in files: - path = os.path.join(tempdir, file_) - self.write_file(path, 'xxx') + self.write_file((tempdir, file_), 'xxx') mainprogram._find_files() mainprogram.data['packages'].sort() |
