(t *testing.T)
| 134 | } |
| 135 | |
| 136 | func TestHasCommits_NoCommits(t *testing.T) { |
| 137 | tempDir = t.TempDir() |
| 138 | setWorkingDir(tempDir) |
| 139 | git("init") |
| 140 | |
| 141 | commits := hasCommits() |
| 142 | |
| 143 | equals(t, false, commits) |
| 144 | } |
| 145 | |
| 146 | func TestNextNotMobProgramming(t *testing.T) { |
| 147 | output, configuration := setup(t) |
nothing calls this directly
no test coverage detected