(self)
| 1194 | box1.popitem() |
| 1195 | |
| 1196 | def test_msgpack_strings(self): |
| 1197 | box1 = Box(test_dict) |
| 1198 | packed = box1.to_msgpack() |
| 1199 | assert Box.from_msgpack(packed) == box1 |
| 1200 | |
| 1201 | def test_msgpack_strings_no_strick_keys(self): |
| 1202 | box1 = Box(test_dict) |
nothing calls this directly
no test coverage detected