(self)
| 180 | get_choices_spy.assert_called_once() |
| 181 | |
| 182 | def test_mapping(self): |
| 183 | choices = { |
| 184 | "C": _("Club"), |
| 185 | "D": _("Diamond"), |
| 186 | "H": _("Heart"), |
| 187 | "S": _("Spade"), |
| 188 | } |
| 189 | self.assertEqual(normalize_choices(choices), self.expected) |
| 190 | |
| 191 | def test_iterable(self): |
| 192 | choices = [ |
nothing calls this directly
no test coverage detected