()
| 223 | |
| 224 | |
| 225 | def test_pat018_patch_reverse(): |
| 226 | p = Patch() |
| 227 | |
| 228 | p.reverse() |
| 229 | data = patch_to_dict(p) |
| 230 | assert data["operations"][0] == { |
| 231 | "operation": "Reverse", |
| 232 | "location": [], |
| 233 | "params": {}, |
| 234 | } |
| 235 | |
| 236 | |
| 237 | def test_pat019_patch_remove(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…