summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_genericpath.py
Commit message (Collapse)AuthorAgeFilesLines
* Add few words about test.test_genericpath.CommonTestFlorent Xicluna2010-06-171-0/+3
|
* Fix verb tense in skip message.Victor Stinner2010-05-131-1/+1
| | | | Ooops, merge also r80334 (patch by r.david.murray)
* Issue #8422, test_genericpath: skip the creation of a directory with an invalidVictor Stinner2010-05-131-0/+4
| | | | | | | UTF name on Mac OS X because the OS deny it (the name have to be a valid UTF8 string). Merge r80163 from py3k branch.
* Move some tests from test_macpath to test_genericpath.CommonTestFlorent Xicluna2010-03-081-0/+12
|
* Minor tweaking of previous r78734, and add a NEWS entry.Florent Xicluna2010-03-061-49/+55
|
* Create test_genericpath.CommonTest and reuse it to test other path modules.Florent Xicluna2010-03-061-107/+144
|
* skip tests with a non-ascii cwd when the file system encoding is asciiEzio Melotti2010-02-201-0/+13
|
* Remove e assertIs definitions and use correct assert* methods.Ezio Melotti2010-02-201-5/+2
|
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-2/+2
|
* - Move functions common to all path modules into genericpath.py and have theJack Diederich2006-08-261-0/+184
OS speicifc path modules import them. - Have os2emxpath import common functions fron ntpath instead of using copies