working commit

This commit is contained in:
2026-03-06 19:13:29 +02:00
parent 68982835be
commit 81e943f1c5
10 changed files with 438 additions and 104 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ import (
"time"
)
func xxxTestPullImage(t *testing.T) {
func TestPullImage(t *testing.T) {
ctx, _ := context.WithTimeout(context.Background(), 10*time.Second)
cli := NewClientWithTransport(nil, nil)
@@ -19,7 +19,7 @@ func xxxTestPullImage(t *testing.T) {
require.NotNil(t, down)
rawref := "mirror.gcr.io/alpine:3.20.0"
destdir := "qwert"
destdir := "aaa"
err := down.Pull(ctx, rawref, destdir, "linux", "amd64")
require.NoError(t, err)
}