(self)
| 161 | """Test _postprocess_plan: deduplication, Run step preservation, cap.""" |
| 162 | |
| 163 | def test_empty_plan(self): |
| 164 | assert _postprocess_plan([]) == [] |
| 165 | |
| 166 | def test_single_step_unchanged(self): |
| 167 | steps = ["Create app.py: accepts input, prints output"] |
nothing calls this directly
no test coverage detected