(self)
| 120 | # The 'test' functions are unittest entry points, and simply call our |
| 121 | # _test functions with each of the filename combinations we wish to test |
| 122 | def test_single_files(self): |
| 123 | self._test_single(TESTFN_UNICODE) |
| 124 | if TESTFN_UNENCODABLE is not None: |
| 125 | self._test_single(TESTFN_UNENCODABLE) |
| 126 | |
| 127 | def test_directories(self): |
| 128 | # For all 'equivalent' combinations: |
nothing calls this directly
no test coverage detected