summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/testcases/modules/timezone.py
blob: bf91d4901db6506d0f583e3ca947ad3f6af8e7f2 (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 TestTimezone(base.CloudTestCase):
    """Test timezone module"""

    def test_timezone(self):
        """Test date prints correct timezone"""
        out = self.get_data_file('timezone')
        self.assertEqual('HDT', out.rstrip())

# vi: ts=4 expandtab