If the value is in our options, nothing happens.
(self)
| 405 | assert in_.__name__ in validator_module.__all__ |
| 406 | |
| 407 | def test_success_with_value(self): |
| 408 | """ |
| 409 | If the value is in our options, nothing happens. |
| 410 | """ |
| 411 | v = in_([1, 2, 3]) |
| 412 | a = simple_attr("test") |
| 413 | |
| 414 | v(1, a, 3) |
| 415 | |
| 416 | def test_fail(self): |
| 417 | """ |
nothing calls this directly
no test coverage detected