mirror of
https://github.com/rancher/os.git
synced 2025-06-24 05:57:03 +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")
|
|
}
|