aboutsummaryrefslogtreecommitdiff
path: root/protocol/v0v1/server/receivepack/helpers_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'protocol/v0v1/server/receivepack/helpers_test.go')
-rw-r--r--protocol/v0v1/server/receivepack/helpers_test.go28
1 files changed, 0 insertions, 28 deletions
diff --git a/protocol/v0v1/server/receivepack/helpers_test.go b/protocol/v0v1/server/receivepack/helpers_test.go
deleted file mode 100644
index 5db8e6a6..00000000
--- a/protocol/v0v1/server/receivepack/helpers_test.go
+++ /dev/null
@@ -1,28 +0,0 @@
-package receivepack_test
-
-import (
- "bytes"
- "strings"
- "testing"
-
- objectid "codeberg.org/lindenii/furgit/object/id"
-)
-
-type bufferWriteFlusher struct {
- bytes.Buffer
-}
-
-func (bufferWriteFlusher) Flush() error {
- return nil
-}
-
-func mustHexID(tb testing.TB, algo objectid.Algorithm, digit string) objectid.ObjectID {
- tb.Helper()
-
- id, err := objectid.ParseHex(algo, strings.Repeat(digit, algo.HexLen()))
- if err != nil {
- tb.Fatalf("objectid.ParseHex(%q): %v", strings.Repeat(digit, algo.HexLen()), err)
- }
-
- return id
-}