blob: bdb1d633e73e2b4e6c94965a51865b2f143d3145 (
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 ..helpers import CiTestCase
from . import _get_distro
class TestopenSUSE(CiTestCase):
def test_get_distro(self):
distro = _get_distro("opensuse")
self.assertEqual(distro.osfamily, 'suse')
|