MCPcopy Create free account
hub / github.com/Ishabdullah/Codey-v2 / test_verify_step_kept

Method test_verify_step_kept

tests/test_orchestration.py:208–217  ·  view source on GitHub ↗

Verify/check steps (no filename) are kept as-is.

(self)

Source from the content-addressed store, hash-verified

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."""

Callers

nothing calls this directly

Calls 1

_postprocess_planFunction · 0.90

Tested by

no test coverage detected