(self)
| 388 | self.assertEqual(len(a), 3) |
| 389 | |
| 390 | def test_repr(self): |
| 391 | for s in ("category(1)", |
| 392 | "category(1, 2)", |
| 393 | "category(1, 2, 3)"): |
| 394 | self.assertEqual(str(eval(s)), s) |
| 395 | |
| 396 | def test_getitem(self): |
| 397 | c = 1, 2, 3 |
nothing calls this directly
no outgoing calls
no test coverage detected