(self)
| 96 | """Non-Claude tools should be unaffected by the fix.""" |
| 97 | |
| 98 | def test_git_detected_via_path(self): |
| 99 | with patch("shutil.which", return_value="/usr/bin/git"): |
| 100 | assert check_tool("git") is True |
| 101 | |
| 102 | def test_missing_tool(self): |
| 103 | with patch("shutil.which", return_value=None): |
nothing calls this directly
no test coverage detected