blob: b92271c151748eb24e8b1980105f8cdb603c8ef2 (
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 TestSnappy(base.CloudTestCase):
"""Test snappy module"""
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
|