Nothing happens if None.
(self, validator)
| 347 | v(None, simple_attr("test"), 42) |
| 348 | |
| 349 | def test_success_with_none(self, validator): |
| 350 | """ |
| 351 | Nothing happens if None. |
| 352 | """ |
| 353 | v = optional(validator) |
| 354 | v(None, simple_attr("test"), None) |
| 355 | |
| 356 | def test_fail(self, validator): |
| 357 | """ |
nothing calls this directly
no test coverage detected