(self, project_dir)
| 4660 | assert "step-b" in installed |
| 4661 | |
| 4662 | def test_is_installed(self, project_dir): |
| 4663 | from specify_cli.workflows.catalog import StepRegistry |
| 4664 | |
| 4665 | registry = StepRegistry(project_dir) |
| 4666 | assert not registry.is_installed("missing") |
| 4667 | |
| 4668 | registry.add("exists", {"name": "Exists", "type_key": "exists"}) |
| 4669 | assert registry.is_installed("exists") |
| 4670 | |
| 4671 | def test_persistence(self, project_dir): |
| 4672 | from specify_cli.workflows.catalog import StepRegistry |
nothing calls this directly
no test coverage detected