2015-05-21 13:48:36 -04:00
|
|
|
// +build experimental
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2015-10-22 20:22:23 -04:00
|
|
|
"github.com/docker/docker/pkg/integration/checker"
|
2015-05-21 13:48:36 -04:00
|
|
|
"github.com/go-check/check"
|
2016-02-08 15:07:04 -05:00
|
|
|
"strings"
|
2015-05-21 13:48:36 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func (s *DockerSuite) TestExperimentalVersion(c *check.C) {
|
2015-07-20 02:55:40 -04:00
|
|
|
out, _ := dockerCmd(c, "version")
|
2015-05-21 13:48:36 -04:00
|
|
|
for _, line := range strings.Split(out, "\n") {
|
2015-05-28 20:59:07 -04:00
|
|
|
if strings.HasPrefix(line, "Experimental (client):") || strings.HasPrefix(line, "Experimental (server):") {
|
2015-10-22 20:22:23 -04:00
|
|
|
c.Assert(line, checker.Matches, "*true")
|
2015-05-21 13:48:36 -04:00
|
|
|
}
|
|
|
|
}
|
2015-05-28 20:59:07 -04:00
|
|
|
|
2015-07-20 02:55:40 -04:00
|
|
|
out, _ = dockerCmd(c, "-v")
|
2015-10-22 20:22:23 -04:00
|
|
|
c.Assert(out, checker.Contains, ", experimental", check.Commentf("docker version did not contain experimental"))
|
2015-05-21 13:48:36 -04:00
|
|
|
}
|