(self)
| 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 |
nothing calls this directly
no test coverage detected