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