()
| 151 | |
| 152 | |
| 153 | def test_pat012_patch_sub(): |
| 154 | p = Patch() |
| 155 | p.minusless -= 1 |
| 156 | |
| 157 | data = patch_to_dict(p) |
| 158 | |
| 159 | assert data["operations"][0] == { |
| 160 | "operation": "Sub", |
| 161 | "location": ["minusless"], |
| 162 | "params": {"value": 1}, |
| 163 | } |
| 164 | |
| 165 | |
| 166 | def test_pat013_patch_mul(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…