shithub: furgit

ref: fb9eb058f1c9b7cb26f33bbe679a85f530566641
dir: /internal/testgit/repo.go/

View raw version
// Package testgit provides helpers for integration tests with upstream git(1).
package testgit

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

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