Verify/check steps (no filename) are kept as-is.
(self)
| 206 | assert len(result) == 4 |
| 207 | |
| 208 | def test_verify_step_kept(self): |
| 209 | """Verify/check steps (no filename) are kept as-is.""" |
| 210 | steps = [ |
| 211 | "Create app.py: core logic", |
| 212 | "Run: python app.py", |
| 213 | "Verify: output matches expected format", |
| 214 | ] |
| 215 | result = _postprocess_plan(steps) |
| 216 | assert len(result) == 3 |
| 217 | assert any("Verify" in s for s in result) |
| 218 | |
| 219 | def test_run_step_with_different_args_both_kept(self): |
| 220 | """Run steps with different arguments are distinct and both kept.""" |
nothing calls this directly
no test coverage detected