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 <zach@anchore.com>
This commit is contained in:
Zach Hill
2020-02-04 10:44:18 -08:00
parent 36fdc062ba
commit a9854e1173

View File

@@ -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")
}