diff --git a/test/unit/REST.py b/test/unit/REST.py index 6efe0ecaf..10a987836 100755 --- a/test/unit/REST.py +++ b/test/unit/REST.py @@ -178,6 +178,9 @@ def test_GetInfrastructureProperty(self, bottle_request, get_infrastructure, Get res = RESTGetInfrastructureProperty("1", "radl") self.assertEqual(res, "radl") + res = RESTGetInfrastructureProperty("1", "outputs") + self.assertEqual(res, '{"outputs": "outputs"}') + res = RESTGetInfrastructureProperty("1", "tosca") self.assertEqual(res, "tosca")