blob: c8a608bb2158bfb42b4aa7ac7b1c0892d139b822 (
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 objectid "lindenii.org/go/furgit/object/id"
// TestRepo is a temporary git repository harness for integration tests.
type TestRepo struct {
dir string
algo objectid.Algorithm
env []string
}
|