diff options
| author | Scott Moser <smoser@ubuntu.com> | 2016-08-11 06:34:06 -0600 | 
|---|---|---|
| committer | Scott Moser <smoser@ubuntu.com> | 2016-08-12 14:40:13 -0400 | 
| commit | d9537aaa37f1e17db334c7cf8888ea3c4dcf1436 (patch) | |
| tree | fd3a557c58f2b9376c6176526dbc2e2c6ab2e4f9 /tests/unittests/test_datasource/test_openstack.py | |
| parent | 80db6eb9d697c21bfab85ab9a0dd5aceee571883 (diff) | |
| download | vyos-cloud-init-d9537aaa37f1e17db334c7cf8888ea3c4dcf1436.tar.gz vyos-cloud-init-d9537aaa37f1e17db334c7cf8888ea3c4dcf1436.zip  | |
MAAS: add vendor-data support
Add vendor-data support to maas which will behave like the openstack
vendor-data does.  Data returned from maas must be yaml loadable.
Also update the main in DataSourceMAAS to "just work" on a maas
deployed system.
LP: #1612313
Diffstat (limited to 'tests/unittests/test_datasource/test_openstack.py')
| -rw-r--r-- | tests/unittests/test_datasource/test_openstack.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unittests/test_datasource/test_openstack.py b/tests/unittests/test_datasource/test_openstack.py index 5c8592c5..97b99a18 100644 --- a/tests/unittests/test_datasource/test_openstack.py +++ b/tests/unittests/test_datasource/test_openstack.py @@ -27,6 +27,7 @@ from six import StringIO  from cloudinit import helpers  from cloudinit import settings +from cloudinit.sources import convert_vendordata  from cloudinit.sources import DataSourceOpenStack as ds  from cloudinit.sources.helpers import openstack  from cloudinit import util @@ -318,7 +319,7 @@ class TestOpenStackDataSource(test_helpers.HttprettyTestCase):  class TestVendorDataLoading(test_helpers.TestCase):      def cvj(self, data): -        return openstack.convert_vendordata_json(data) +        return convert_vendordata(data)      def test_vd_load_none(self):          # non-existant vendor-data should return none  | 
