mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
25 lines
555 B
Go
25 lines
555 B
Go
|
// +build experimental
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"os/exec"
|
||
|
"strings"
|
||
|
|
||
|
"github.com/go-check/check"
|
||
|
)
|
||
|
|
||
|
func (s *DockerSuite) TestExperimentalVersion(c *check.C) {
|
||
|
versionCmd := exec.Command(dockerBinary, "version")
|
||
|
out, _, err := runCommandWithOutput(versionCmd)
|
||
|
if err != nil {
|
||
|
c.Fatalf("failed to execute docker version: %s, %v", out, err)
|
||
|
}
|
||
|
|
||
|
for _, line := range strings.Split(out, "\n") {
|
||
|
if strings.HasPrefix(line, "Client version:") || strings.HasPrefix(line, "Server version:") {
|
||
|
c.Assert(line, check.Matches, "*-experimental")
|
||
|
}
|
||
|
}
|
||
|
}
|