(self)
| 52 | self.assertIsInstance(v, HttpUrl) |
| 53 | |
| 54 | def test_local(self): |
| 55 | v = self.adapter.validate_python( |
| 56 | {"type": "local", "path": "/tmp/p.pdf"} |
| 57 | ) |
| 58 | self.assertIsInstance(v, LocalFilePath) |
| 59 | self.assertEqual(v.path, Path("/tmp/p.pdf")) |
nothing calls this directly
no outgoing calls
no test coverage detected