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