mirror of
https://github.com/containers/podman.git
synced 2025-12-01 18:49:18 +08:00
Enable more podman-remote pod commands
enable pod start, stop, and kill subcommands for the remote-client. Signed-off-by: baude <bbaude@redhat.com>
This commit is contained in:
@@ -136,6 +136,5 @@ var _ = Describe("Podman pod start", func() {
|
||||
session = podmanTest.Podman([]string{"pod", "start", podid, "doesnotexist"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(125))
|
||||
Expect(podmanTest.NumberOfContainersRunning()).To(Equal(1))
|
||||
})
|
||||
})
|
||||
|
||||
@@ -137,6 +137,5 @@ var _ = Describe("Podman pod stop", func() {
|
||||
session = podmanTest.Podman([]string{"pod", "stop", podid1, "doesnotexist"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(125))
|
||||
Expect(podmanTest.NumberOfContainersRunning()).To(Equal(0))
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user