(self)
| 1205 | assert Box.from_msgpack(packed, strict_map_key=False) == box1 |
| 1206 | |
| 1207 | def test_msgpack_files(self): |
| 1208 | box1 = Box(test_dict) |
| 1209 | box1.to_msgpack(filename=tmp_msgpack_file) |
| 1210 | assert Box.from_msgpack(filename=tmp_msgpack_file) == box1 |
| 1211 | |
| 1212 | def test_msgpack_no_input(self): |
| 1213 | with pytest.raises(BoxError): |
nothing calls this directly
no test coverage detected