(self, path)
| 423 | P() < {} |
| 424 | |
| 425 | def make_uri(self, path): |
| 426 | if isinstance(path, pathlib.Path): |
| 427 | return path.as_uri() |
| 428 | with self.assertWarns(DeprecationWarning): |
| 429 | return path.as_uri() |
| 430 | |
| 431 | def test_as_uri_common(self): |
| 432 | P = self.cls |
no test coverage detected