()
| 95 | |
| 96 | |
| 97 | def test_pat008_patch_prepend(): |
| 98 | p = Patch() |
| 99 | p.prepend("item") |
| 100 | data = patch_to_dict(p) |
| 101 | |
| 102 | assert data["operations"][0] == { |
| 103 | "operation": "Prepend", |
| 104 | "location": [], |
| 105 | "params": {"value": "item"}, |
| 106 | } |
| 107 | |
| 108 | |
| 109 | def test_pat009_patch_extend(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…