(self, tmp_path)
| 273 | |
| 274 | class TestRepositoryExists: |
| 275 | def test_ValidFile(self, tmp_path): |
| 276 | # Create local temp file |
| 277 | repos = datasource.Repository(valid_baseurl(), tmp_path) |
| 278 | tmpfile = valid_textfile(tmp_path) |
| 279 | assert_(repos.exists(tmpfile)) |
| 280 | |
| 281 | def test_InvalidFile(self, tmp_path): |
| 282 | repos = datasource.Repository(valid_baseurl(), tmp_path) |
nothing calls this directly
no test coverage detected