(self)
| 125 | self._test_single(TESTFN_UNENCODABLE) |
| 126 | |
| 127 | def test_directories(self): |
| 128 | # For all 'equivalent' combinations: |
| 129 | # Make dir with encoded, chdir with unicode, checkdir with encoded |
| 130 | # (or unicode/encoded/unicode, etc |
| 131 | ext = ".dir" |
| 132 | self._do_directory(TESTFN_UNICODE+ext, TESTFN_UNICODE+ext) |
| 133 | # Our directory name that can't use a non-unicode name. |
| 134 | if TESTFN_UNENCODABLE is not None: |
| 135 | self._do_directory(TESTFN_UNENCODABLE+ext, |
| 136 | TESTFN_UNENCODABLE+ext) |
| 137 | |
| 138 | |
| 139 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected