summaryrefslogtreecommitdiff
path: root/distutils2/tests/test_command_install_data.py
Commit message (Collapse)AuthorAgeFilesLines
* Clean up some idioms in tests.?ric Araujo2011-11-121-0/+2
| | | | | | | | | | | - 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
* Fix writing of the RESOURCES file (#12386).?ric Araujo2011-11-111-3/+67
| | | | This was not broken in d2 because codecs.open allows 'b' in mode.
* Fix backport changesets part 2: tests?ric Araujo2011-09-181-0/+1
|
* Fixes to actually use the backports.Jeremy Kloth2011-09-121-2/+2
|
* Backported packaging from cpython default, overwriting previous version.Vinay Sajip2011-08-181-22/+23
|
* Fix last bug, check that data file not exists at the same path and has the ↵FELD Boris2011-01-301-6/+23
| | | | same content.
* Merge with upstream and update some unittest to the new data-files ↵FELD Boris2011-01-291-4/+1
| | | | implementation
* Removed unused imports (sys, getpass) and unused variable (inst3).Louis Munro2010-12-081-3/+0
|
* Rename command's tests filenames to test_command_*, and install_tools.py to ↵Alexis Metaireau2010-10-041-0/+75
install.py The goal is to avoid overlaps between commands and scripts names (for instance the "install" script and the "install" command)