blob: 5b6addc41ba0023fc2e8898f591aa9ee5a14593f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# This file is part of curtin. See LICENSE file for copyright and license info.
from . import VMBaseClass
from .releases import base_vm_classes as relbase
class TestReuseMSDOSPartitions(VMBaseClass):
""" Curtin can reuse MSDOS partitions with flags. """
conf_file = "examples/tests/reuse-msdos-partitions.yaml"
test_stype = 'storage'
def test_simple(self):
pass
class BionicTestReuseMSDOSPartitions(relbase.bionic,
TestReuseMSDOSPartitions):
__test__ = True
class FocalTestReuseMSDOSPartitions(relbase.focal,
TestReuseMSDOSPartitions):
__test__ = True
# vi: ts=4 expandtab syntax=python
|