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

Method test_step_context_defaults

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

Source from the content-addressed store, hash-verified

146 """Test StepBase, StepContext, StepResult."""
147
148 def test_step_context_defaults(self):
149 from specify_cli.workflows.base import StepContext
150
151 ctx = StepContext()
152 assert ctx.inputs == {}
153 assert ctx.steps == {}
154 assert ctx.item is None
155 assert ctx.fan_in == {}
156 assert ctx.default_integration is None
157
158 def test_step_context_with_data(self):
159 from specify_cli.workflows.base import StepContext

Callers

nothing calls this directly

Calls 1

StepContextClass · 0.90

Tested by

no test coverage detected