blob: 7732c380d8ef74686b14625c18e66f96354844e6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# This file is part of cloud-init. See LICENSE file for license information.
from tests.unittests.distros import _get_distro
from tests.unittests.helpers import CiTestCase
class TestSLES(CiTestCase):
def test_get_distro(self):
distro = _get_distro("sles")
self.assertEqual(distro.osfamily, "suse")
|