MCPcopy
hub / github.com/github/spec-kit / test_is_installed

Method test_is_installed

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

Source from the content-addressed store, hash-verified

4660 assert "step-b" in installed
4661
4662 def test_is_installed(self, project_dir):
4663 from specify_cli.workflows.catalog import StepRegistry
4664
4665 registry = StepRegistry(project_dir)
4666 assert not registry.is_installed("missing")
4667
4668 registry.add("exists", {"name": "Exists", "type_key": "exists"})
4669 assert registry.is_installed("exists")
4670
4671 def test_persistence(self, project_dir):
4672 from specify_cli.workflows.catalog import StepRegistry

Callers

nothing calls this directly

Calls 3

is_installedMethod · 0.95
addMethod · 0.95
StepRegistryClass · 0.90

Tested by

no test coverage detected