1
0
mirror of https://github.com/rancher/os.git synced 2025-08-31 06:11:12 +00:00
Files
os/tests/network_on_boot_test.go

11 lines
307 B
Go
Raw Normal View History

2016-07-20 10:42:16 -07:00
package integration
import . "gopkg.in/check.v1"
func (s *QemuSuite) TestNetworkOnBoot(c *C) {
2016-10-21 20:34:30 -07:00
s.RunQemu(c, "--cloud-config", "./tests/assets/test_18/cloud-config.yml", "-net", "nic,vlan=1,model=virtio")
2016-07-20 10:42:16 -07:00
s.CheckCall(c, "apk --version")
2016-07-20 10:42:16 -07:00
s.CheckCall(c, "sudo system-docker images | grep tianon/true")
}