mirror of
https://github.com/rancher/os.git
synced 2025-06-22 04:57:04 +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 10
|
||
|
docker inspect kernel-headers`)
|
||
|
}
|