(self)
| 48 | def test_http(self): |
| 49 | v = self.adapter.validate_python( |
| 50 | {"type": "http", "url": "https://example.com/p.pdf"} |
| 51 | ) |
| 52 | self.assertIsInstance(v, HttpUrl) |
| 53 | |
| 54 | def test_local(self): |
| 55 | v = self.adapter.validate_python( |
nothing calls this directly
no outgoing calls
no test coverage detected