(t *testing.T)
| 126 | } |
| 127 | |
| 128 | func TestHasCommits(t *testing.T) { |
| 129 | _, _ = setup(t) |
| 130 | |
| 131 | commits := hasCommits() |
| 132 | |
| 133 | equals(t, true, commits) |
| 134 | } |
| 135 | |
| 136 | func TestHasCommits_NoCommits(t *testing.T) { |
| 137 | tempDir = t.TempDir() |
nothing calls this directly
no test coverage detected