mirror of
https://github.com/rancher/os.git
synced 2025-07-09 12:53:06 +00:00
20 lines
499 B
Python
20 lines
499 B
Python
|
import pytest
|
||
|
import rostest.util as u
|
||
|
from rostest.util import SSH
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope="module")
|
||
|
def qemu(request):
|
||
|
q = u.run_qemu(request, run_args=['--append', 'rancher.state.directory=ros_subdir'])
|
||
|
u.flush_out(q.stdout)
|
||
|
return q
|
||
|
|
||
|
|
||
|
def test_system_docker_survives_custom_docker_install(qemu):
|
||
|
SSH(qemu).check_call('bash', '-c', '''
|
||
|
set -x -e
|
||
|
mkdir x
|
||
|
sudo mount $(ros dev LABEL=RANCHER_STATE) x
|
||
|
[ -d x/ros_subdir/home/rancher ]
|
||
|
'''.strip())
|