()
| 61 | |
| 62 | |
| 63 | def test_pat005_patch_delete_item(): |
| 64 | p = Patch() |
| 65 | |
| 66 | del p["delete_me"] |
| 67 | |
| 68 | data = patch_to_dict(p) |
| 69 | |
| 70 | assert data["operations"][0]["operation"] == "Delete" |
| 71 | assert data["operations"][0]["location"] == ["delete_me"] |
| 72 | |
| 73 | |
| 74 | def test_pat006_patch_delete_attr(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…