(self)
| 429 | return path.as_uri() |
| 430 | |
| 431 | def test_as_uri_common(self): |
| 432 | P = self.cls |
| 433 | with self.assertRaises(ValueError): |
| 434 | self.make_uri(P('a')) |
| 435 | with self.assertRaises(ValueError): |
| 436 | self.make_uri(P()) |
| 437 | |
| 438 | def test_repr_roundtrips(self): |
| 439 | for pathstr in ('a', 'a/b', 'a/b/c', '/', '/a/b', '/a/b/c'): |
nothing calls this directly
no test coverage detected