()
| 138 | |
| 139 | |
| 140 | def test_pat011_patch_add(): |
| 141 | p = Patch() |
| 142 | p.plusplus += 1 |
| 143 | |
| 144 | data = patch_to_dict(p) |
| 145 | |
| 146 | assert data["operations"][0] == { |
| 147 | "operation": "Add", |
| 148 | "location": ["plusplus"], |
| 149 | "params": {"value": 1}, |
| 150 | } |
| 151 | |
| 152 | |
| 153 | def test_pat012_patch_sub(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…