(self, project_dir)
| 4632 | assert registry.get("deploy")["nested"]["key"] == "original" |
| 4633 | |
| 4634 | def test_remove(self, project_dir): |
| 4635 | from specify_cli.workflows.catalog import StepRegistry |
| 4636 | |
| 4637 | registry = StepRegistry(project_dir) |
| 4638 | registry.add("deploy", {"name": "Deploy", "type_key": "deploy"}) |
| 4639 | assert registry.is_installed("deploy") |
| 4640 | |
| 4641 | registry.remove("deploy") |
| 4642 | assert not registry.is_installed("deploy") |
| 4643 | |
| 4644 | def test_remove_missing_returns_false(self, project_dir): |
| 4645 | from specify_cli.workflows.catalog import StepRegistry |
nothing calls this directly
no test coverage detected