(self, tmp_path)
| 200 | assert_equal(tmpfile, ds.abspath(tmpfile)) |
| 201 | |
| 202 | def test_InvalidHTTP(self, tmp_path): |
| 203 | ds = datasource.DataSource(tmp_path) |
| 204 | _, netloc, upath, _, _, _ = urlparse(invalid_httpurl()) |
| 205 | invalidhttp = os.path.join(tmp_path, netloc, |
| 206 | upath.strip(os.sep).strip('/')) |
| 207 | assert_(invalidhttp != ds.abspath(valid_httpurl())) |
| 208 | |
| 209 | def test_InvalidFile(self, tmp_path): |
| 210 | ds = datasource.DataSource(tmp_path) |
no test coverage detected