MCPcopy Index your code
hub / github.com/RustPython/RustPython / test_uid_copy

Method test_uid_copy

Lib/test/test_plistlib.py:573–575  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

571 self.assertEqual(pickle.loads(pickle.dumps(UID(19), protocol=proto)), UID(19))
572
573 def test_uid_copy(self):
574 self.assertEqual(copy.copy(UID(1)), UID(1))
575 self.assertEqual(copy.deepcopy(UID(1)), UID(1))
576
577 def test_appleformatting(self):
578 for fmt in ALL_FORMATS:

Callers

nothing calls this directly

Calls 3

UIDClass · 0.90
assertEqualMethod · 0.45
copyMethod · 0.45

Tested by

no test coverage detected