()
| 963 | |
| 964 | |
| 965 | def test_partial(): |
| 966 | def my_wrapped_function(a: int, b: int, c: int): |
| 967 | return a + b + c |
| 968 | |
| 969 | my_partial_function = partial(my_wrapped_function, c=3) |
| 970 | f = validate_call(my_partial_function) |
| 971 | assert f(1, 2) == 6 |
| 972 | |
| 973 | |
| 974 | def test_validator_init(): |
nothing calls this directly
no test coverage detected