(self, project_dir)
| 5045 | """Test dynamic loading of custom step types from the filesystem.""" |
| 5046 | |
| 5047 | def test_empty_steps_dir(self, project_dir): |
| 5048 | from specify_cli.workflows import load_custom_steps |
| 5049 | |
| 5050 | loaded = load_custom_steps(project_dir) |
| 5051 | assert loaded == [] |
| 5052 | |
| 5053 | def test_no_steps_dir(self, project_dir): |
| 5054 | from specify_cli.workflows import load_custom_steps |
nothing calls this directly
no test coverage detected