(self)
| 1210 | assert Box.from_msgpack(filename=tmp_msgpack_file) == box1 |
| 1211 | |
| 1212 | def test_msgpack_no_input(self): |
| 1213 | with pytest.raises(BoxError): |
| 1214 | Box.from_msgpack() |
| 1215 | |
| 1216 | def test_toon_strings(self): |
| 1217 | box1 = Box(test_dict) |
nothing calls this directly
no test coverage detected