()
| 235 | |
| 236 | |
| 237 | def test_pat019_patch_remove(): |
| 238 | p = Patch() |
| 239 | |
| 240 | p.remove("item") |
| 241 | data = patch_to_dict(p) |
| 242 | assert data["operations"][0] == { |
| 243 | "operation": "Remove", |
| 244 | "location": [], |
| 245 | "params": {"value": "item"}, |
| 246 | } |
| 247 | |
| 248 | |
| 249 | def test_pat020_patch_pickle(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…