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