(self, component: ComponentRef)
| 103 | self._fail_on = fail_on |
| 104 | |
| 105 | def _key(self, component: ComponentRef) -> tuple[str, str]: |
| 106 | return (component.kind, component.id) |
| 107 | |
| 108 | def is_installed(self, project_root: Path, component: ComponentRef) -> bool: |
| 109 | return self._key(component) in self.installed |
no outgoing calls
no test coverage detected