mirror of
https://github.com/rancher/os.git
synced 2025-06-30 16:51:47 +00:00
19 lines
325 B
Go
19 lines
325 B
Go
package integration
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
. "gopkg.in/check.v1"
|
|
)
|
|
|
|
func (s *QemuSuite) TestInstall(c *C) {
|
|
err := s.RunQemu("--no-format")
|
|
c.Assert(err, IsNil)
|
|
|
|
s.LoadInstallerImage(c)
|
|
|
|
s.CheckCall(c, fmt.Sprintf(`
|
|
sudo mkfs.ext4 /dev/vda
|
|
sudo ros install -f --no-reboot -d /dev/vda -i rancher/os:%s%s`, Version, Suffix))
|
|
}
|