(t *testing.T)
| 18 | } |
| 19 | |
| 20 | func TestRevparseSingle(t *testing.T) { |
| 21 | t.Parallel() |
| 22 | repo := createTestRepo(t) |
| 23 | defer cleanupTestRepo(t, repo) |
| 24 | |
| 25 | commitId, _ := seedTestRepo(t, repo) |
| 26 | |
| 27 | obj, err := repo.RevparseSingle("HEAD") |
| 28 | checkFatal(t, err) |
| 29 | |
| 30 | checkObject(t, obj, commitId) |
| 31 | } |
| 32 | |
| 33 | func TestRevparseExt(t *testing.T) { |
| 34 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…