aboutsummaryrefslogtreecommitdiff
path: root/internal/testgit/repo.go
blob: 7118aa7a8b6fbc9159be3bb74ec05770228f9613 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package testgit

import "codeberg.org/lindenii/furgit/objectid"

// TestRepo is a temporary git repository harness for integration tests.
type TestRepo struct {
	dir  string
	algo objectid.Algorithm
	env  []string
}