~veebers/juju-ci-tools/explore-perf-bulk-model-destruction

« back to all changes in this revision

Viewing changes to tests/test_assess_bootstrap.py

  • Committer: Curtis Hovey
  • Date: 2016-06-02 17:25:41 UTC
  • mto: This revision was merged to the branch mainline in revision 1451.
  • Revision ID: curtis@canonical.com-20160602172541-m2919wz4epari8n7
show_status for all models.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
                       side_effect=lambda cls: '1.25.5')
48
48
        gjo_cxt = patch('jujupy.EnvJujuClient.get_juju_output', autospec=True,
49
49
                        return_value='')
 
50
        imc_cxt = patch('jujupy.EnvJujuClient.iter_model_clients',
 
51
                        autospec=True, return_value=[])
50
52
        env_cxt = temp_env({'environments': {'bar': {'type': 'foo'}}})
51
 
        with call_cxt, cc_cxt, gv_cxt, gjo_cxt, env_cxt:
 
53
        with call_cxt, cc_cxt, gv_cxt, gjo_cxt, env_cxt, imc_cxt:
52
54
            yield
53
55
 
54
56
    def test_assess_bootstrap_defaults(self):