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

Function test_nested_list

tests/test_deepcopy.py:37–41  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

35
36
37def test_nested_list() -> None:
38 obj1 = ["a", [1, 2, 3]]
39 obj2 = deepcopy_minimal(obj1)
40 assert_different_identities(obj1, obj2)
41 assert_different_identities(obj1[1], obj2[1])
42
43
44class MyObject: ...

Callers

nothing calls this directly

Calls 2

deepcopy_minimalFunction · 0.90

Tested by

no test coverage detected