(self)
| 545 | self.assertEqual(operator.iconcat (c, c), "iadd") |
| 546 | |
| 547 | def test_iconcat_without_getitem(self): |
| 548 | operator = self.module |
| 549 | |
| 550 | msg = "'int' object can't be concatenated" |
| 551 | with self.assertRaisesRegex(TypeError, msg): |
| 552 | operator.iconcat(1, 0.5) |
| 553 | |
| 554 | def test_index(self): |
| 555 | operator = self.module |
nothing calls this directly
no test coverage detected