~ubuntu-branches/ubuntu/wily/heat/wily

« back to all changes in this revision

Viewing changes to heat_integrationtests/functional/test_aws_stack.py

  • Committer: Package Import Robot
  • Author(s): Corey Bryant
  • Date: 2015-09-08 15:52:07 UTC
  • mfrom: (1.1.28)
  • Revision ID: package-import@ubuntu.com-20150908155207-zi2r1rckyrevr5u7
Tags: 1:5.0.0~b3-0ubuntu1
* New upstream milestone for OpenStack Liberty.
* d/control: Align (build-)depends with upstream.
* d/p/fix-dummy-resource-missing.patch: Dropped. Fixed in milestone.
* d/p/move-extensions.patch: Dropped. Fixed in milestone.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import yaml
21
21
 
22
22
from heat_integrationtests.common import test
23
 
 
 
23
from heat_integrationtests.functional import functional_base
24
24
 
25
25
LOG = logging.getLogger(__name__)
26
26
 
27
27
 
28
 
class AwsStackTest(test.HeatIntegrationTest):
 
28
class AwsStackTest(functional_base.FunctionalTestsBase):
29
29
    test_template = '''
30
30
HeatTemplateFormatVersion: '2012-12-12'
31
31
Resources:
75
75
 
76
76
    def setUp(self):
77
77
        super(AwsStackTest, self).setUp()
78
 
        self.client = self.orchestration_client
79
78
        self.object_container_name = AwsStackTest.__name__
80
79
        self.project_id = self.identity_client.auth_ref.project_id
81
80
        self.object_client.put_container(self.object_container_name)