~jcsackett/charmworld/bac-tag-constraints

« back to all changes in this revision

Viewing changes to charmworld/tests/test_deployer_integration.py

  • Committer: Rick Harding
  • Date: 2013-10-31 17:27:29 UTC
  • mfrom: (435 trunk)
  • mto: (436.1.2 api-doc-updates)
  • mto: This revision was merged to the branch mainline in revision 437.
  • Revision ID: rick.harding@canonical.com-20131031172729-u7cxl8ox3awl2o55
Update deployer version and it's deps, make that work

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
import yaml
8
8
 
 
9
from charmworld.lib.deployer import get_flattened_deployment
9
10
from charmworld.testing import TestCase
10
11
 
11
12
 
23
24
                            tuning: optimized
24
25
                            engine: apache
25
26
        """)
26
 
        from deployer import get_flattened_deployment
27
27
        parsed = yaml.safe_load(deployer_config)
28
28
        expected = deepcopy(parsed)['wordpress-stage']
29
29
        result = get_flattened_deployment(parsed, 'wordpress-stage')