network_on_boot_test.go 307 B

1234567891011
  1. package integration
  2. import . "gopkg.in/check.v1"
  3. func (s *QemuSuite) TestNetworkOnBoot(c *C) {
  4. s.RunQemu(c, "--cloud-config", "./tests/assets/test_18/cloud-config.yml", "-net", "nic,vlan=1,model=virtio")
  5. s.CheckCall(c, "apk --version")
  6. s.CheckCall(c, "sudo system-docker images | grep tianon/true")
  7. }