mirror of
https://github.com/rancher/os.git
synced 2025-06-22 13:07:04 +00:00
11 lines
311 B
Go
11 lines
311 B
Go
package integration
|
|
|
|
import . "gopkg.in/check.v1"
|
|
|
|
func (s *QemuSuite) TestNetworkOnBoot(c *C) {
|
|
s.RunQemu(c, "--cloud-config", "./tests/assets/test_18/cloud-config.yml", "-net", "nic,vlan=1,model=virtio")
|
|
|
|
s.CheckCall(c, "apt-get --version")
|
|
s.CheckCall(c, "sudo system-docker images | grep tianon/true")
|
|
}
|