(self)
| 189 | self.assertEqual(normalize_choices(choices), self.expected) |
| 190 | |
| 191 | def test_iterable(self): |
| 192 | choices = [ |
| 193 | ("C", _("Club")), |
| 194 | ("D", _("Diamond")), |
| 195 | ("H", _("Heart")), |
| 196 | ("S", _("Spade")), |
| 197 | ] |
| 198 | self.assertEqual(normalize_choices(choices), self.expected) |
| 199 | |
| 200 | def test_iterator(self): |
| 201 | def generator(): |
nothing calls this directly
no test coverage detected