(self, tmp_path)
| 90 | |
| 91 | class TestDataSourceOpen: |
| 92 | def test_ValidHTTP(self, tmp_path): |
| 93 | ds = datasource.DataSource(tmp_path) |
| 94 | fh = ds.open(valid_httpurl()) |
| 95 | assert_(fh) |
| 96 | fh.close() |
| 97 | |
| 98 | def test_InvalidHTTP(self, tmp_path): |
| 99 | ds = datasource.DataSource(tmp_path) |
nothing calls this directly
no test coverage detected