()
| 215 | |
| 216 | |
| 217 | def test_pat017_patch_clear(): |
| 218 | p = Patch() |
| 219 | |
| 220 | p.clear() |
| 221 | data = patch_to_dict(p) |
| 222 | assert data["operations"][0] == {"operation": "Clear", "location": [], "params": {}} |
| 223 | |
| 224 | |
| 225 | def test_pat018_patch_reverse(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…