(self)
| 722 | self.assertEqual(expected, validator(value)) |
| 723 | |
| 724 | def test_single_message(self): |
| 725 | v = ValidationError("Not Valid") |
| 726 | self.assertEqual(str(v), "['Not Valid']") |
| 727 | self.assertEqual(repr(v), "ValidationError(['Not Valid'])") |
| 728 | |
| 729 | def test_message_list(self): |
| 730 | v = ValidationError(["First Problem", "Second Problem"]) |
nothing calls this directly
no test coverage detected