(self, tmp_path)
| 177 | rmtree(localdir) |
| 178 | |
| 179 | def test_InvalidFile(self, tmp_path): |
| 180 | ds = datasource.DataSource(tmp_path) |
| 181 | tmpfile = invalid_textfile(tmp_path) |
| 182 | assert_equal(ds.exists(tmpfile), False) |
| 183 | |
| 184 | |
| 185 | class TestDataSourceAbspath: |
nothing calls this directly
no test coverage detected