/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/per_bzrdir/test_bzrdir.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:
19
19
import errno
20
20
from stat import S_ISDIR
21
21
 
22
 
import brzlib.branch
23
 
from brzlib import (
 
22
import breezy.branch
 
23
from breezy import (
24
24
    bzrdir,
25
25
    controldir,
26
26
    errors,
29
29
    transport,
30
30
    workingtree,
31
31
    )
32
 
from brzlib.remote import RemoteBzrDirFormat
33
 
from brzlib.tests import (
 
32
from breezy.remote import RemoteBzrDirFormat
 
33
from breezy.tests import (
34
34
    TestNotApplicable,
35
35
    TestSkipped,
36
36
    )
37
 
from brzlib.tests.per_bzrdir import TestCaseWithBzrDir
38
 
from brzlib.transport.local import (
 
37
from breezy.tests.per_bzrdir import TestCaseWithBzrDir
 
38
from breezy.transport.local import (
39
39
    LocalTransport,
40
40
    )
41
41
 
42
42
 
43
 
class AnonymousTestBranchFormat(brzlib.branch.BranchFormat):
 
43
class AnonymousTestBranchFormat(breezy.branch.BranchFormat):
44
44
    """An anonymous branch format (does not have a format string)"""
45
45
 
46
46
    def get_format_string(self):
47
47
        raise NotImplementedError(self.get_format_string)
48
48
 
49
49
 
50
 
class IdentifiableTestBranchFormat(brzlib.branch.BranchFormat):
 
50
class IdentifiableTestBranchFormat(breezy.branch.BranchFormat):
51
51
    """An identifable branch format (has a format string)"""
52
52
 
53
53
    def get_format_string(self):