(gitcli)
| 180 | |
| 181 | |
| 182 | def test_checkout(gitcli): |
| 183 | with patch.object(gitcli, "_run_git") as mock_run: |
| 184 | mock_run.return_value = MagicMock(returncode=0) |
| 185 | assert gitcli.checkout() == gitcli.check_root() |
| 186 | |
| 187 | |
| 188 | def test_git_version_check_ok(minion_opts, tmp_path): |
nothing calls this directly
no test coverage detected