mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
18 lines
562 B
Go
18 lines
562 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/docker/docker/pkg/integration/checker"
|
||
|
"github.com/go-check/check"
|
||
|
)
|
||
|
|
||
|
func (s *DockerSuite) TestStopContainerWithRestartPolicyAlways(c *check.C) {
|
||
|
dockerCmd(c, "run", "--name", "verifyRestart1", "-d", "--restart=always", "busybox", "false")
|
||
|
dockerCmd(c, "run", "--name", "verifyRestart2", "-d", "--restart=always", "busybox", "false")
|
||
|
|
||
|
c.Assert(waitRun("verifyRestart1"), checker.IsNil)
|
||
|
c.Assert(waitRun("verifyRestart2"), checker.IsNil)
|
||
|
|
||
|
dockerCmd(c, "stop", "verifyRestart1")
|
||
|
dockerCmd(c, "stop", "verifyRestart2")
|
||
|
}
|