mirror of
https://github.com/rancher/os.git
synced 2025-06-26 15:01:34 +00:00
13 lines
260 B
Go
13 lines
260 B
Go
package integration
|
|
|
|
import . "gopkg.in/check.v1"
|
|
|
|
func (s *QemuSuite) TestKernelHeaders(c *C) {
|
|
err := s.RunQemu("--cloud-config", "./tests/assets/test_22/cloud-config.yml")
|
|
c.Assert(err, IsNil)
|
|
|
|
s.CheckCall(c, `
|
|
sleep 15
|
|
docker inspect kernel-headers`)
|
|
}
|