(self)
| 1199 | assert Box.from_msgpack(packed) == box1 |
| 1200 | |
| 1201 | def test_msgpack_strings_no_strick_keys(self): |
| 1202 | box1 = Box(test_dict) |
| 1203 | box1[5] = 2 |
| 1204 | packed = box1.to_msgpack() |
| 1205 | assert Box.from_msgpack(packed, strict_map_key=False) == box1 |
| 1206 | |
| 1207 | def test_msgpack_files(self): |
| 1208 | box1 = Box(test_dict) |
nothing calls this directly
no test coverage detected