mirror of
https://github.com/containers/podman.git
synced 2026-07-10 15:25:00 -04:00
The podman module paths are moving from github.com/containers/podman to go.podman.io/podman. This will help with future mobility. Signed-off-by: Brent Baude <bbaude@redhat.com>
22 lines
647 B
Go
22 lines
647 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"))
|
|
})
|
|
|
|
// TODO: this should have a proper connection test where we spawn a server
|
|
// and the use dial-stdio to connect to it and send data.
|
|
})
|