(self, *args)
| 672 | f'input value: {repr(input_value)}' |
| 673 | |
| 674 | def test_outputs(self, *args): |
| 675 | for output_value, expected_output in get_items(self.outputs): |
| 676 | assert self.field.to_representation(output_value) == expected_output, \ |
| 677 | f'output value: {repr(output_value)}' |
| 678 | |
| 679 | |
| 680 | # Boolean types... |
nothing calls this directly
no test coverage detected