1
0
mirror of https://github.com/rancher/os.git synced 2025-06-27 07:16:48 +00:00
os/tests/environment_test.go

12 lines
360 B
Go
Raw Normal View History

2016-07-20 17:42:16 +00:00
package integration
import . "gopkg.in/check.v1"
func (s *QemuSuite) TestEnvironment(c *C) {
2016-10-22 03:34:30 +00:00
s.RunQemu(c, "--cloud-config", "./tests/assets/test_11/cloud-config.yml")
2016-07-20 17:42:16 +00:00
s.CheckCall(c, "sudo system-docker inspect env | grep A=A")
s.CheckCall(c, "sudo system-docker inspect env | grep BB=BB")
s.CheckCall(c, "sudo system-docker inspect env | grep BC=BC")
}