(self, tmp_path)
| 110 | assert_raises(URLError, ds._cache, invalid_httpurl()) |
| 111 | |
| 112 | def test_ValidFile(self, tmp_path): |
| 113 | ds = datasource.DataSource(tmp_path) |
| 114 | local_file = valid_textfile(tmp_path) |
| 115 | fh = ds.open(local_file) |
| 116 | assert_(fh) |
| 117 | fh.close() |
| 118 | |
| 119 | def test_InvalidFile(self, tmp_path): |
| 120 | ds = datasource.DataSource(tmp_path) |
nothing calls this directly
no test coverage detected