~ubuntu-branches/ubuntu/vivid/heat/vivid

« back to all changes in this revision

Viewing changes to heat/tests/test_dependencies.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2015-04-15 13:55:31 UTC
  • mfrom: (1.1.24)
  • Revision ID: package-import@ubuntu.com-20150415135531-ife9cdiuch673nsf
Tags: 2015.1~rc1-0ubuntu1
* New upstream milestone release for Openstack kilo;
  - d/control: Align with upstream dependencies. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#    under the License.
13
13
 
14
14
 
15
 
import testtools
16
 
 
17
15
from heat.engine import dependencies
18
 
 
19
 
 
20
 
class dependenciesTest(testtools.TestCase):
 
16
from heat.tests import common
 
17
 
 
18
 
 
19
class dependenciesTest(common.HeatTestCase):
21
20
 
22
21
    def _dep_test(self, func, checkorder, deps):
23
22
        nodes = set.union(*[set(e) for e in deps])