mirror of
https://github.com/rancher/os.git
synced 2025-06-24 14:01:34 +00:00
14 lines
364 B
Go
14 lines
364 B
Go
|
package integration
|
||
|
|
||
|
import . "gopkg.in/check.v1"
|
||
|
|
||
|
func (s *QemuSuite) TestKernelParameterModule(c *C) {
|
||
|
s.RunQemu(c, "--append", "rancher.modules=[btrfs]")
|
||
|
s.CheckCall(c, "lsmod | grep btrfs")
|
||
|
}
|
||
|
|
||
|
func (s *QemuSuite) TestCloudConfigModule(c *C) {
|
||
|
s.RunQemu(c, "--cloud-config", "./tests/assets/test_27/cloud-config.yml")
|
||
|
s.CheckCall(c, "lsmod | grep btrfs")
|
||
|
}
|