blob: 345d9db7240de35eeedb3bbb3cf26c518f6dfcb1 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package testgit
import (
"fmt"
"testing"
objectid "codeberg.org/lindenii/furgit/object/id"
)
// RemoveLooseObject removes one loose object file from the repository.
func (testRepo *TestRepo) RemoveLooseObject(tb testing.TB, id objectid.ObjectID) {
tb.Helper()
root := testRepo.OpenObjectsRoot(tb)
hex := id.String()
path := fmt.Sprintf("%s/%s", hex[:2], hex[2:])
err := root.Remove(path)
if err != nil {
tb.Fatalf("remove loose object %s: %v", id, err)
}
}
|