(self)
| 47 | self._test_marshal({"a": {"b": 2}, "c": [0.0, 4.0, 6, 9]}) |
| 48 | |
| 49 | def test_marshal_set(self): |
| 50 | self._test_marshal(set()) |
| 51 | self._test_marshal({1, 2, 3}) |
| 52 | self._test_marshal({1, "a", "b"}) |
| 53 | |
| 54 | def test_marshal_frozen_set(self): |
| 55 | self._test_marshal(frozenset()) |
nothing calls this directly
no test coverage detected