Silent if value {op} bound.
(self, v, value)
| 915 | ], |
| 916 | ) |
| 917 | def test_check_valid(self, v, value): |
| 918 | """Silent if value {op} bound.""" |
| 919 | |
| 920 | @attr.s |
| 921 | class Tester: |
| 922 | value = attr.ib(validator=v(self.BOUND)) |
| 923 | |
| 924 | Tester(value) # shouldn't raise exceptions |
| 925 | |
| 926 | @pytest.mark.parametrize( |
| 927 | ("v", "value"), |