If the value is callable, nothing happens.
(self)
| 820 | assert is_callable.__name__ in validator_module.__all__ |
| 821 | |
| 822 | def test_success(self): |
| 823 | """ |
| 824 | If the value is callable, nothing happens. |
| 825 | """ |
| 826 | v = is_callable() |
| 827 | a = simple_attr("test") |
| 828 | v(None, a, isinstance) |
| 829 | |
| 830 | def test_fail(self): |
| 831 | """ |
nothing calls this directly
no test coverage detected