blob: 3d0267d24ec1e161baea121ec873711056d8ee6d (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// Package testgit provides helpers for integration tests with upstream git(1).
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
}
|