~hazmat/pyjuju/proposed-support

« back to all changes in this revision

Viewing changes to juju/control/tests/test_config_get.py

  • Committer: kapil.thangavelu at canonical
  • Date: 2012-05-22 22:08:15 UTC
  • mfrom: (484.1.53 trunk)
  • Revision ID: kapil.thangavelu@canonical.com-20120522220815-acyt8m89i9ybe0w1
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
    @inlineCallbacks
14
14
    def setUp(self):
15
15
        yield super(ControlJujuGetTest, self).setUp()
16
 
        config = {
17
 
            "environments": {"firstenv": {"type": "dummy"}}}
18
 
        self.write_config(yaml.dump(config))
19
 
        self.config.load()
20
16
        self.stderr = self.capture_stream("stderr")
21
17
 
22
18
    @inlineCallbacks