(self, project_dir)
| 4289 | assert not registry.is_installed("test-wf") |
| 4290 | |
| 4291 | def test_list(self, project_dir): |
| 4292 | from specify_cli.workflows.catalog import WorkflowRegistry |
| 4293 | |
| 4294 | registry = WorkflowRegistry(project_dir) |
| 4295 | registry.add("wf-a", {"name": "A"}) |
| 4296 | registry.add("wf-b", {"name": "B"}) |
| 4297 | |
| 4298 | installed = registry.list() |
| 4299 | assert "wf-a" in installed |
| 4300 | assert "wf-b" in installed |
| 4301 | |
| 4302 | def test_is_installed(self, project_dir): |
| 4303 | from specify_cli.workflows.catalog import WorkflowRegistry |
nothing calls this directly
no test coverage detected