blob: 7d17fc5b5af06473fc17cfa74ea144c90c01f8af (
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 TestSnappy(base.CloudTestCase):
"""Test snappy module"""
expected_warnings = ('DEPRECATION',)
def test_snappy_version(self):
"""Test snappy version output"""
out = self.get_data_file('snapd')
self.assertIn('Status: install ok installed', out)
# vi: ts=4 expandtab
|