1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Added c.Assert statements to docker_api_create_test.go

removed the if/else statements and added c.Assert statements for docker_api_create_test.go.

Removed check.commentf in c.Assert statements

Signed-off-by: Zuhayr Elahi <elahi.zuhayr@gmail.com>
This commit is contained in:
Zuhayr Elahi 2015-10-21 20:30:54 -07:00
parent e2e2ea401a
commit 6694326d5d

View file

@ -4,6 +4,7 @@ import (
"net/http"
"strings"
"github.com/docker/docker/pkg/integration/checker"
"github.com/go-check/check"
)
@ -18,9 +19,7 @@ func (s *DockerSuite) TestApiCreateWithNotExistImage(c *check.C) {
c.Assert(err, check.IsNil)
c.Assert(status, check.Equals, http.StatusNotFound)
expected := "No such image: test456:v1"
if !strings.Contains(string(resp), expected) {
c.Fatalf("expected: %s, got: %s", expected, string(resp))
}
c.Assert(strings.TrimSpace(string(resp)), checker.Contains, expected)
config2 := map[string]interface{}{
"Image": "test456",
@ -31,8 +30,6 @@ func (s *DockerSuite) TestApiCreateWithNotExistImage(c *check.C) {
c.Assert(err, check.IsNil)
c.Assert(status, check.Equals, http.StatusNotFound)
expected = "No such image: test456:latest"
if !strings.Contains(string(resp), expected) {
c.Fatalf("expected: %s, got: %s", expected, string(resp))
}
c.Assert(strings.TrimSpace(string(resp)), checker.Equals, expected)
}