summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/testcases/modules/debug_enable.py
blob: 28d260625bf2830e0c6f244837b2f56544b18cc0 (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 TestDebugEnable(base.CloudTestCase):
    """Test debug messages."""

    def test_debug_enable(self):
        """Test debug messages in cloud-init log."""
        out = self.get_data_file('cloud-init.log')
        self.assertIn('[DEBUG]', out)

# vi: ts=4 expandtab