(self)
| 303 | assert a.b.b == 4 |
| 304 | |
| 305 | def test_set_default_dict(self): |
| 306 | a = Box(test_dict) |
| 307 | new = a.setdefault("key3", {}) |
| 308 | new.yy = 8 |
| 309 | assert a.key3.yy == 8 |
| 310 | |
| 311 | def test_set_default(self): |
| 312 | a = Box(test_dict) |
nothing calls this directly
no test coverage detected