Ensure that valid values return the expected validated data.
(self, *args)
| 654 | Base class for testing valid and invalid input values. |
| 655 | """ |
| 656 | def test_valid_inputs(self, *args): |
| 657 | """ |
| 658 | Ensure that valid values return the expected validated data. |
| 659 | """ |
| 660 | for input_value, expected_output in get_items(self.valid_inputs): |
| 661 | assert self.field.run_validation(input_value) == expected_output, \ |
| 662 | f'input value: {repr(input_value)}' |
| 663 | |
| 664 | def test_invalid_inputs(self, *args): |
| 665 | """ |
nothing calls this directly
no test coverage detected