(self, project_dir)
| 4300 | assert "wf-b" in installed |
| 4301 | |
| 4302 | def test_is_installed(self, project_dir): |
| 4303 | from specify_cli.workflows.catalog import WorkflowRegistry |
| 4304 | |
| 4305 | registry = WorkflowRegistry(project_dir) |
| 4306 | assert not registry.is_installed("missing") |
| 4307 | |
| 4308 | registry.add("exists", {"name": "Exists"}) |
| 4309 | assert registry.is_installed("exists") |
| 4310 | |
| 4311 | def test_persistence(self, project_dir): |
| 4312 | from specify_cli.workflows.catalog import WorkflowRegistry |
nothing calls this directly
no test coverage detected