(self, tmp_path)
| 162 | assert_(ds.exists(valid_httpurl())) |
| 163 | |
| 164 | def test_InvalidHTTP(self, tmp_path): |
| 165 | ds = datasource.DataSource(tmp_path) |
| 166 | assert_equal(ds.exists(invalid_httpurl()), False) |
| 167 | |
| 168 | def test_ValidFile(self, tmp_path): |
| 169 | # Test valid file in destpath |
nothing calls this directly
no test coverage detected