(self, tmp_path)
| 279 | assert_(repos.exists(tmpfile)) |
| 280 | |
| 281 | def test_InvalidFile(self, tmp_path): |
| 282 | repos = datasource.Repository(valid_baseurl(), tmp_path) |
| 283 | tmpfile = invalid_textfile(tmp_path) |
| 284 | assert_equal(repos.exists(tmpfile), False) |
| 285 | |
| 286 | def test_RemoveHTTPFile(self, tmp_path): |
| 287 | repos = datasource.Repository(valid_baseurl(), tmp_path) |
nothing calls this directly
no test coverage detected