~hazmat/pyjuju/security-policy-with-topology

« back to all changes in this revision

Viewing changes to juju/environment/tests/test_environment.py

  • Committer: kapil.thangavelu at canonical
  • Date: 2012-03-31 03:34:10 UTC
  • mfrom: (316.1.11 states-with-principals)
  • Revision ID: kapil.thangavelu@canonical.com-20120331033410-mj2znr90wnm0j88b
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from ensemble.providers import dummy
2
 
 
3
 
from ensemble.environment.tests.test_config import (
 
1
from juju.environment.tests.test_config import (
4
2
    EnvironmentsConfigTestBase, SAMPLE_ENV)
 
3
from juju.providers import dummy
5
4
 
6
5
 
7
6
class EnvironmentTest(EnvironmentsConfigTestBase):
78
77
        self.mocker.throw(SyntaxError())
79
78
        self.mocker.replay()
80
79
        self.assertRaises(SyntaxError, env.get_serialization_data)
81