summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/testcases/modules/set_hostname.py
blob: 1dbe64c22b51acc982045de3ad11238e266022ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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 TestHostname(base.CloudTestCase):
    """Test hostname module."""

    ex_hostname = "cloudinit2"

    def test_hostname(self):
        """Test hostname command shows correct output."""
        out = self.get_data_file('hostname')
        self.assertIn(self.ex_hostname, out)

# vi: ts=4 expandtab