diff --git a/pkg/registry/registry_test.go b/pkg/registry/registry_test.go index 23a7823d..47b1dad8 100644 --- a/pkg/registry/registry_test.go +++ b/pkg/registry/registry_test.go @@ -29,24 +29,3 @@ func TestMain(m *testing.M) { func TestNew(t *testing.T) { assert.NotNil(t, rc) } - -func TestTags(t *testing.T) { - assert.NotNil(t, rc) - - image, err := registry.ParseImage(registry.ParseImageOptions{ - Name: "crazymax/diun:3.0.0", - }) - if err != nil { - t.Error(err) - } - - tags, err := rc.Tags(registry.TagsOptions{ - Image: image, - }) - if err != nil { - t.Error(err) - } - - assert.True(t, tags.Total > 0) - assert.True(t, len(tags.List) > 0) -} diff --git a/pkg/registry/tags_test.go b/pkg/registry/tags_test.go new file mode 100644 index 00000000..073a1be3 --- /dev/null +++ b/pkg/registry/tags_test.go @@ -0,0 +1,29 @@ +package registry_test + +import ( + "testing" + + "github.com/crazy-max/diun/v4/pkg/registry" + "github.com/stretchr/testify/assert" +) + +func TestTags(t *testing.T) { + assert.NotNil(t, rc) + + image, err := registry.ParseImage(registry.ParseImageOptions{ + Name: "crazymax/diun:3.0.0", + }) + if err != nil { + t.Error(err) + } + + tags, err := rc.Tags(registry.TagsOptions{ + Image: image, + }) + if err != nil { + t.Error(err) + } + + assert.True(t, tags.Total > 0) + assert.True(t, len(tags.List) > 0) +}