(self, project_dir)
| 5051 | assert loaded == [] |
| 5052 | |
| 5053 | def test_no_steps_dir(self, project_dir): |
| 5054 | from specify_cli.workflows import load_custom_steps |
| 5055 | |
| 5056 | # .specify/workflows/steps does not exist |
| 5057 | loaded = load_custom_steps(project_dir) |
| 5058 | assert loaded == [] |
| 5059 | |
| 5060 | def test_load_valid_custom_step(self, project_dir): |
| 5061 | from specify_cli.workflows import load_custom_steps, STEP_REGISTRY |
nothing calls this directly
no test coverage detected