()
| 72 | |
| 73 | |
| 74 | def test_pat006_patch_delete_attr(): |
| 75 | p = Patch() |
| 76 | |
| 77 | del p.delete_me |
| 78 | |
| 79 | data = patch_to_dict(p) |
| 80 | |
| 81 | assert data["operations"][0]["operation"] == "Delete" |
| 82 | assert data["operations"][0]["location"] == ["delete_me"] |
| 83 | |
| 84 | |
| 85 | def test_pat007_patch_append(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…