(self)
| 100 | assert check_tool("git") is True |
| 101 | |
| 102 | def test_missing_tool(self): |
| 103 | with patch("shutil.which", return_value=None): |
| 104 | assert check_tool("nonexistent-tool") is False |
| 105 | |
| 106 | def test_kiro_fallback(self): |
| 107 | """kiro-cli detection should try both kiro-cli and kiro.""" |
nothing calls this directly
no test coverage detected