mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-11 10:07:53 +00:00
18 lines
511 B
Go
18 lines
511 B
Go
//go:build linux || freebsd
|
|
|
|
package integration
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
. "go.podman.io/podman/v6/test/utils"
|
|
)
|
|
|
|
var _ = Describe("podman system dial-stdio", func() {
|
|
It("podman system dial-stdio help", func() {
|
|
session := podmanTest.Podman([]string{"system", "dial-stdio", "--help"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(ExitCleanly())
|
|
Expect(session.OutputToString()).To(ContainSubstring("Examples: podman system dial-stdio"))
|
|
})
|
|
})
|