(self, tmp_path)
| 262 | assert_(path(fn).startswith(str(tmp_path))) |
| 263 | |
| 264 | def test_windows_os_sep(self, tmp_path): |
| 265 | orig_os_sep = os.sep |
| 266 | try: |
| 267 | os.sep = '\\' |
| 268 | self.test_ValidHTTP(tmp_path) |
| 269 | self.test_sandboxing(tmp_path) |
| 270 | finally: |
| 271 | os.sep = orig_os_sep |
| 272 | |
| 273 | |
| 274 | class TestRepositoryExists: |
nothing calls this directly
no test coverage detected