mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Add diff command with emtpy string testcase
Signed-off-by: Antonio Murdaca <runcom@linux.com>
This commit is contained in:
parent
37771c122b
commit
9d84d4c2cc
1 changed files with 7 additions and 0 deletions
|
@ -108,3 +108,10 @@ func (s *DockerSuite) TestDiffEnsureOnlyKmsgAndPtmx(c *check.C) {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
// https://github.com/docker/docker/pull/14381#discussion_r33859347
|
||||
func (s *DockerSuite) TestDiffEmptyArgClientError(c *check.C) {
|
||||
out, _, err := runCommandWithOutput(exec.Command(dockerBinary, "diff", ""))
|
||||
c.Assert(err, check.NotNil)
|
||||
c.Assert(strings.TrimSpace(out), check.Equals, "Container name cannot be empty")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue