MCPcopy Index your code
hub / github.com/github/spec-kit / test_is_installed

Method test_is_installed

tests/test_workflows.py:4302–4309  ·  view source on GitHub ↗
(self, project_dir)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

is_installedMethod · 0.95
addMethod · 0.95
WorkflowRegistryClass · 0.90

Tested by

no test coverage detected