1234567891011 |
- 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")
- }
|