summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/testcases/modules/apt_configure_disable_suites.py
blob: eabe4607db172e00a11dc3a651aa399304aabf1b (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