({ schema, method, url, httpPart })
| 335 | }) |
| 336 | |
| 337 | const anotherValidator = ({ schema, method, url, httpPart }) => { |
| 338 | return () => { return true } // always valid |
| 339 | } |
| 340 | instance.post('/three', { |
| 341 | validatorCompiler: anotherValidator, |
| 342 | handler (req, reply) { |
nothing calls this directly
no outgoing calls
no test coverage detected