1
0
mirror of https://github.com/rancher/os.git synced 2025-06-23 05:27:03 +00:00
os/tests/dhcp_hostname_test.go
2016-10-23 16:23:30 -07:00

11 lines
274 B
Go

package integration
import . "gopkg.in/check.v1"
func (s *QemuSuite) TestDhcpHostname(c *C) {
s.RunQemu(c, "--cloud-config", "./tests/assets/test_12/cloud-config.yml")
s.CheckCall(c, "hostname | grep rancher-dev")
s.CheckCall(c, "cat /etc/hosts | grep rancher-dev")
}