()
| 107 | |
| 108 | |
| 109 | def test_pat009_patch_extend(): |
| 110 | p = Patch() |
| 111 | p.extend(["extend"]) |
| 112 | data = patch_to_dict(p) |
| 113 | |
| 114 | assert data["operations"][0] == { |
| 115 | "operation": "Extend", |
| 116 | "location": [], |
| 117 | "params": {"value": ["extend"]}, |
| 118 | } |
| 119 | |
| 120 | |
| 121 | def test_pat010_patch_merge(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…