(self)
| 554 | self.assertEqual(obj.s, {"a", 0, 1, 2, 3}) |
| 555 | |
| 556 | def test_dict_update(self): |
| 557 | c = Config() |
| 558 | c.Containers.d.update({"c": "d"}) |
| 559 | c.Containers.d.update({"e": "f"}) |
| 560 | obj = Containers(config=c) |
| 561 | self.assertEqual(obj.d, {"a": "b", "c": "d", "e": "f"}) |
| 562 | |
| 563 | def test_update_twice(self): |
| 564 | c = Config() |
nothing calls this directly
no test coverage detected