diff options
author | Lars Kellogg-Stedman <lars@redhat.com> | 2017-09-05 11:03:59 -0600 |
---|---|---|
committer | Chad Smith <chad.smith@canonical.com> | 2017-09-05 11:03:59 -0600 |
commit | a3649e03206a3596131413956ea7ecc18790ec73 (patch) | |
tree | c65363a90f8e0734e3fcccc1380c04505b1297dc /tests/unittests/test_datasource/test_azure.py | |
parent | 653c0b4cfc6325382a3fb93a2185ab74f9cee62a (diff) | |
download | vyos-cloud-init-a3649e03206a3596131413956ea7ecc18790ec73.tar.gz vyos-cloud-init-a3649e03206a3596131413956ea7ecc18790ec73.zip |
relocate tests/unittests/helpers.py to cloudinit/tests
This moves the base test case classes into into cloudinit/tests and
updates all the corresponding imports.
Diffstat (limited to 'tests/unittests/test_datasource/test_azure.py')
-rw-r--r-- | tests/unittests/test_datasource/test_azure.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unittests/test_datasource/test_azure.py b/tests/unittests/test_datasource/test_azure.py index 20e70fb7..0a117771 100644 --- a/tests/unittests/test_datasource/test_azure.py +++ b/tests/unittests/test_datasource/test_azure.py @@ -6,8 +6,8 @@ from cloudinit.sources import DataSourceAzure as dsaz from cloudinit.util import find_freebsd_part from cloudinit.util import get_path_dev_freebsd -from ..helpers import (CiTestCase, TestCase, populate_dir, mock, - ExitStack, PY26, SkipTest) +from cloudinit.tests.helpers import (CiTestCase, TestCase, populate_dir, mock, + ExitStack, PY26, SkipTest) import crypt import os @@ -871,6 +871,7 @@ class TestLoadAzureDsDir(CiTestCase): class TestReadAzureOvf(TestCase): + def test_invalid_xml_raises_non_azure_ds(self): invalid_xml = "<foo>" + construct_valid_ovf_env(data={}) self.assertRaises(dsaz.BrokenAzureDataSource, @@ -1079,6 +1080,7 @@ class TestCanDevBeReformatted(CiTestCase): class TestAzureNetExists(CiTestCase): + def test_azure_net_must_exist_for_legacy_objpkl(self): """DataSourceAzureNet must exist for old obj.pkl files that reference it.""" |