()
| 81 | |
| 82 | |
| 83 | def test_deepcopy_with_object(): |
| 84 | original = NormalObject(10) |
| 85 | copy_obj = safe_deepcopy(original) |
| 86 | assert copy_obj.value == original.value |
| 87 | assert copy_obj is not original |
| 88 | assert copy_obj.nested is not original.nested |
| 89 | |
| 90 | |
| 91 | def test_deepcopy_with_custom_deepcopy_fallback(): |
nothing calls this directly
no test coverage detected