(self)
| 260 | del self.repos |
| 261 | |
| 262 | def test_ValidHTTP(self): |
| 263 | scheme, netloc, upath, pms, qry, frg = urlparse(valid_httpurl()) |
| 264 | local_path = os.path.join(self.repos._destpath, netloc, |
| 265 | upath.strip(os.sep).strip('/')) |
| 266 | filepath = self.repos.abspath(valid_httpfile()) |
| 267 | assert_equal(local_path, filepath) |
| 268 | |
| 269 | def test_sandboxing(self): |
| 270 | tmp_path = lambda x: os.path.abspath(self.repos.abspath(x)) |
no test coverage detected