(self)
| 30 | self.assertEqual(u2, list("spameggs")) |
| 31 | |
| 32 | def test_radd_specials(self): |
| 33 | u = UserList("eggs") |
| 34 | u2 = "spam" + u |
| 35 | self.assertEqual(u2, list("spameggs")) |
| 36 | u2 = u.__radd__(UserList("spam")) |
| 37 | self.assertEqual(u2, list("spameggs")) |
| 38 | |
| 39 | def test_iadd(self): |
| 40 | super().test_iadd() |
nothing calls this directly
no test coverage detected