(self, project_dir)
| 4649 | assert removed is False |
| 4650 | |
| 4651 | def test_list(self, project_dir): |
| 4652 | from specify_cli.workflows.catalog import StepRegistry |
| 4653 | |
| 4654 | registry = StepRegistry(project_dir) |
| 4655 | registry.add("step-a", {"name": "A", "type_key": "step-a"}) |
| 4656 | registry.add("step-b", {"name": "B", "type_key": "step-b"}) |
| 4657 | |
| 4658 | installed = registry.list() |
| 4659 | assert "step-a" in installed |
| 4660 | assert "step-b" in installed |
| 4661 | |
| 4662 | def test_is_installed(self, project_dir): |
| 4663 | from specify_cli.workflows.catalog import StepRegistry |
nothing calls this directly
no test coverage detected