(self)
| 547 | self.assertEqual(obj.lis, [1, -1, 2, 3]) |
| 548 | |
| 549 | def test_set_update(self): |
| 550 | c = Config() |
| 551 | c.Containers.s.update({0, 1, 2}) |
| 552 | c.Containers.s.update({3}) |
| 553 | obj = Containers(config=c) |
| 554 | self.assertEqual(obj.s, {"a", 0, 1, 2, 3}) |
| 555 | |
| 556 | def test_dict_update(self): |
| 557 | c = Config() |
nothing calls this directly
no test coverage detected