From a9854e1173099f855005d038c5b3e3316a0a3cb4 Mon Sep 17 00:00:00 2001 From: Zach Hill Date: Tue, 4 Feb 2020 10:44:18 -0800 Subject: [PATCH] Remove the list_tags integration test since it does not cover much not already tested by the upstream container/images repo or local unit tests Signed-off-by: Zach Hill --- integration/list_tags_test.go | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 integration/list_tags_test.go diff --git a/integration/list_tags_test.go b/integration/list_tags_test.go deleted file mode 100644 index a122987e..00000000 --- a/integration/list_tags_test.go +++ /dev/null @@ -1,20 +0,0 @@ -package main - -import ( - "github.com/go-check/check" -) - -func init() { - check.Suite(&TagListSuite{}) -} - -type TagListSuite struct {} - -// Simple tag listing -func (s *TagListSuite) TestListSimple(c *check.C) { - //assertSkopeoSucceeds(c, `.*Repository: docker\.io/library/centos.*`, "list-tags", "docker://docker.io/library/centos") - //assertSkopeoSucceeds(c, `.*Repository: docker\.io/library/centos.*`, "list-tags", "docker://centos") - //assertSkopeoSucceeds(c, `.*Repository: docker\.io/library/centos.*`, "list-tags", "docker://docker.io/centos") - //assertSkopeoFails(c, ".*No tag or digest allowed.*", "", "list-tags", "docker://docker.io/centos:7") - //ssertSkopeoFails(c, ".*Unsupported transport.*", "", "list-tags", "docker-daemon:docker.io/centos:7") -}