(t *testing.T)
| 148 | } |
| 149 | |
| 150 | func TestRepositoryItemPath(t *testing.T) { |
| 151 | repo := createTestRepo(t) |
| 152 | defer cleanupTestRepo(t, repo) |
| 153 | |
| 154 | gitDir, err := repo.ItemPath(RepositoryItemGitDir) |
| 155 | checkFatal(t, err) |
| 156 | if gitDir == "" { |
| 157 | t.Error("expected not empty gitDir") |
| 158 | } |
| 159 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…