/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/test_url_policy_open.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Tests for the branch open with specific URL policy code."""
18
18
 
19
 
from brzlib import urlutils
20
 
from brzlib.branch import (
 
19
from breezy import urlutils
 
20
from breezy.branch import (
21
21
    Branch,
22
22
    BranchReferenceFormat,
23
23
    )
24
 
from brzlib.bzrdir import (
 
24
from breezy.bzrdir import (
25
25
    BzrProber,
26
26
    )
27
 
from brzlib.controldir import (
 
27
from breezy.controldir import (
28
28
    ControlDir,
29
29
    ControlDirFormat,
30
30
    )
31
 
from brzlib.errors import NotBranchError
32
 
from brzlib.url_policy_open import (
 
31
from breezy.errors import NotBranchError
 
32
from breezy.url_policy_open import (
33
33
    BadUrl,
34
34
    _BlacklistPolicy,
35
35
    BranchLoopError,
38
38
    BranchOpener,
39
39
    WhitelistPolicy,
40
40
    )
41
 
from brzlib.tests import (
 
41
from breezy.tests import (
42
42
    TestCase,
43
43
    TestCaseWithTransport,
44
44
    )
45
 
from brzlib.transport import chroot
 
45
from breezy.transport import chroot
46
46
 
47
47
 
48
48
class TestBranchOpenerCheckAndFollowBranchReference(TestCase):