mirror of
https://github.com/rancher/os.git
synced 2025-06-23 13:37:03 +00:00
13 lines
282 B
Go
13 lines
282 B
Go
|
package integration
|
||
|
|
||
|
import . "gopkg.in/check.v1"
|
||
|
|
||
|
func (s *QemuSuite) TestLenientServiceParsing(c *C) {
|
||
|
err := s.RunQemu("--cloud-config", "./tests/assets/test_19/cloud-config.yml")
|
||
|
c.Assert(err, IsNil)
|
||
|
|
||
|
s.CheckCall(c, `
|
||
|
sleep 5
|
||
|
sudo system-docker ps -a | grep test-parsing`)
|
||
|
}
|