MCPcopy Create free account
hub / github.com/anomalyco/opencode-sdk-python / test_nested_dict

Function test_nested_dict

tests/test_deepcopy.py:15–19  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

13
14
15def 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
22def test_complex_nested_dict() -> None:

Callers

nothing calls this directly

Calls 2

deepcopy_minimalFunction · 0.90

Tested by

no test coverage detected