~andrewjbeach/juju-ci-tools/make-local-patcher

« back to all changes in this revision

Viewing changes to tests/test_jujuconfig.py

  • Committer: Martin Packman
  • Date: 2015-12-16 03:59:38 UTC
  • mto: This revision was merged to the branch mainline in revision 1200.
  • Revision ID: martin.packman@canonical.com-20151216035938-881wbry7ezh8he5m
Add missing template test file

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
        self.assertEqual('LXC (local)', describe_substrate(
21
21
            {'type': 'local'}))
22
22
 
 
23
    def test_describe_substrate_hp(self):
 
24
        self.assertEqual('HPCloud', describe_substrate(
 
25
            {'type': 'openstack', 'auth-url': 'hpcloudsvc.com:35357/v2.0/'}))
 
26
 
23
27
    def test_describe_substrate_openstack(self):
24
28
        self.assertEqual('Openstack', describe_substrate(
25
29
            {'type': 'openstack', 'auth-url': 'pcloudsvc.com:35357/v2.0/'}))