MCPcopy Index your code
hub / github.com/github/spec-kit / test_step_context_with_data

Method test_step_context_with_data

tests/test_workflows.py:158–168  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

156 assert ctx.default_integration is None
157
158 def test_step_context_with_data(self):
159 from specify_cli.workflows.base import StepContext
160
161 ctx = StepContext(
162 inputs={"name": "test"},
163 default_integration="claude",
164 default_model="sonnet-4",
165 )
166 assert ctx.inputs == {"name": "test"}
167 assert ctx.default_integration == "claude"
168 assert ctx.default_model == "sonnet-4"
169
170 def test_step_result_defaults(self):
171 from specify_cli.workflows.base import StepResult, StepStatus

Callers

nothing calls this directly

Calls 1

StepContextClass · 0.90

Tested by

no test coverage detected