~andrewjbeach/juju-ci-tools/get-juju-dict

« back to all changes in this revision

Viewing changes to tests/test_assess_user_grant_revoke.py

  • Committer: Martin Packman
  • Date: 2016-07-22 19:17:54 UTC
  • mto: (1543.1.1 extract_fakejuju_up)
  • mto: This revision was merged to the branch mainline in revision 1544.
  • Revision ID: martin.packman@canonical.com-20160722191754-3wtivqiho6dkabx8
Move fake_juju_client and related code into a new top level fakejuju file

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
    parse_args,
24
24
    register_user,
25
25
)
 
26
from fakejuju import (
 
27
    fake_juju_client,
 
28
    FakeBackend,
 
29
)
26
30
from jujupy import JUJU_DEV_FEATURE_FLAGS
27
31
from tests import (
28
32
    parse_error,
29
33
    TestCase,
30
34
)
31
 
from tests.test_jujupy import (
32
 
    fake_juju_client,
33
 
    FakeBackend,
34
 
)
35
35
 
36
36
 
37
37
class FakeBackendShellEnv(FakeBackend):