(t *testing.T)
| 229 | } |
| 230 | |
| 231 | func TestDetectGitRemoteMissing(t *testing.T) { |
| 232 | dir := t.TempDir() |
| 233 | if got := detectGitRemote(dir); got != "" { |
| 234 | t.Errorf("want empty for non-git dir, got %q", got) |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | func TestDetectGitRemoteBasic(t *testing.T) { |
| 239 | dir := t.TempDir() |
nothing calls this directly
no test coverage detected