(self)
| 512 | self.assertEqual(obj.lis, ["a", "b", -1]) |
| 513 | |
| 514 | def test_prepend(self): |
| 515 | c = Config() |
| 516 | c.Containers.lis.prepend([1, 2]) |
| 517 | c.Containers.lis.prepend([2, 3]) |
| 518 | obj = Containers(config=c) |
| 519 | self.assertEqual(obj.lis, [2, 3, 1, 2, -1]) |
| 520 | |
| 521 | def test_prepend_extend(self): |
| 522 | c = Config() |
nothing calls this directly
no test coverage detected