(self)
| 195 | del self.ds |
| 196 | |
| 197 | def test_ValidHTTP(self): |
| 198 | scheme, netloc, upath, pms, qry, frg = urlparse(valid_httpurl()) |
| 199 | local_path = os.path.join(self.tmpdir, netloc, |
| 200 | upath.strip(os.sep).strip('/')) |
| 201 | assert_equal(local_path, self.ds.abspath(valid_httpurl())) |
| 202 | |
| 203 | def test_ValidFile(self): |
| 204 | tmpfile = valid_textfile(self.tmpdir) |
no test coverage detected