()
| 13 | |
| 14 | |
| 15 | def test_nested_dict() -> None: |
| 16 | obj1 = {"foo": {"bar": True}} |
| 17 | obj2 = deepcopy_minimal(obj1) |
| 18 | assert_different_identities(obj1, obj2) |
| 19 | assert_different_identities(obj1["foo"], obj2["foo"]) |
| 20 | |
| 21 | |
| 22 | def test_complex_nested_dict() -> None: |
nothing calls this directly
no test coverage detected