summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/testcases/modules/apt_configure_disable_suites.py
blob: 0e2dfdeb26f1f9dd034faa390cd028dff2832af9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This file is part of cloud-init. See LICENSE file for license information.

"""cloud-init Integration Test Verify Script"""
from tests.cloud_tests.testcases import base


class TestAptconfigureDisableSuites(base.CloudTestCase):
    """Test apt-configure module"""

    def test_empty_sourcelist(self):
        """Test source list is empty"""
        out = self.get_data_file('sources.list')
        self.assertEqual('', out)

# vi: ts=4 expandtab