(self)
| 209 | assert_equal(tmpfile, self.ds.abspath(tmpfile)) |
| 210 | |
| 211 | def test_InvalidHTTP(self): |
| 212 | scheme, netloc, upath, pms, qry, frg = urlparse(invalid_httpurl()) |
| 213 | invalidhttp = os.path.join(self.tmpdir, netloc, |
| 214 | upath.strip(os.sep).strip('/')) |
| 215 | assert_(invalidhttp != self.ds.abspath(valid_httpurl())) |
| 216 | |
| 217 | def test_InvalidFile(self): |
| 218 | invalidfile = valid_textfile(self.tmpdir) |
no test coverage detected