1
0
mirror of https://github.com/rancher/os.git synced 2025-06-26 06:51:40 +00:00
os/tests/tls_test.go
2016-07-20 10:42:16 -07:00

14 lines
265 B
Go

package integration
import . "gopkg.in/check.v1"
func (s *QemuSuite) TestTls(c *C) {
err := s.RunQemu("--cloud-config", "./tests/assets/test_02/cloud-config.yml")
c.Assert(err, IsNil)
s.CheckCall(c, `
set -e -x
sudo ros tls gen
docker --tlsverify version`)
}