1
0
mirror of https://github.com/rancher/os.git synced 2025-06-22 13:07:04 +00:00
os/tests/subdir_test.go

13 lines
276 B
Go
Raw Normal View History

2016-07-20 17:42:16 +00:00
package integration
import . "gopkg.in/check.v1"
func (s *QemuSuite) TestSubdir(c *C) {
2016-10-22 03:34:30 +00:00
s.RunQemu(c, "--append", "rancher.state.directory=ros_subdir")
2016-07-20 17:42:16 +00:00
s.CheckCall(c, `
set -x -e
mkdir x
sudo mount $(sudo ros dev LABEL=RANCHER_STATE) x
[ -d x/ros_subdir/home/rancher ]`)
}