(self, project_dir)
| 4279 | assert "installed_at" in entry |
| 4280 | |
| 4281 | def test_remove(self, project_dir): |
| 4282 | from specify_cli.workflows.catalog import WorkflowRegistry |
| 4283 | |
| 4284 | registry = WorkflowRegistry(project_dir) |
| 4285 | registry.add("test-wf", {"name": "Test"}) |
| 4286 | assert registry.is_installed("test-wf") |
| 4287 | |
| 4288 | registry.remove("test-wf") |
| 4289 | assert not registry.is_installed("test-wf") |
| 4290 | |
| 4291 | def test_list(self, project_dir): |
| 4292 | from specify_cli.workflows.catalog import WorkflowRegistry |
nothing calls this directly
no test coverage detected