Test service with Component instead of Plan db object

Since plan db objects are getting removed in add-plan-in-swift,
we need to test service with another object.

Change-Id: I85537ef17f8c125d3de85ab3625ea91e9487376f
This commit is contained in:
Pierre Padrixe 2014-04-11 14:24:59 +02:00
parent 468d683a01
commit f8d94b9342
1 changed files with 4 additions and 3 deletions

View File

@ -21,7 +21,7 @@ import testtools
from solum.common import service
from solum import objects
from solum.objects import plan as abstract
from solum.objects import component as abstract
from solum.tests import base
@ -30,6 +30,7 @@ class TestService(base.BaseTestCase):
def test_prepare_invokes_object_load(self):
objects.registry.clear()
with testtools.ExpectedException(KeyError):
objects.registry.Plan()
objects.registry.Component()
service.prepare_service([])
self.assertTrue(issubclass(objects.registry.Plan, abstract.Plan))
self.assertTrue(issubclass(objects.registry.Component,
abstract.Component))