/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/blackbox/test_branch.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
 
20
20
import os
21
21
 
22
 
from brzlib import (
 
22
from breezy import (
23
23
    branch,
24
24
    bzrdir,
25
25
    controldir,
27
27
    revision as _mod_revision,
28
28
    tests,
29
29
    )
30
 
from brzlib.repofmt.knitrepo import RepositoryFormatKnit1
31
 
from brzlib.tests import (
 
30
from breezy.repofmt.knitrepo import RepositoryFormatKnit1
 
31
from breezy.tests import (
32
32
    fixtures,
33
33
    test_server,
34
34
    )
35
 
from brzlib.tests.features import (
 
35
from breezy.tests.features import (
36
36
    HardlinkFeature,
37
37
    )
38
 
from brzlib.tests.blackbox import test_switch
39
 
from brzlib.tests.matchers import ContainsNoVfsCalls
40
 
from brzlib.tests.test_sftp_transport import TestCaseWithSFTPServer
41
 
from brzlib.tests.script import run_script
42
 
from brzlib.urlutils import local_path_to_url, strip_trailing_slash
43
 
from brzlib.workingtree import WorkingTree
 
38
from breezy.tests.blackbox import test_switch
 
39
from breezy.tests.matchers import ContainsNoVfsCalls
 
40
from breezy.tests.test_sftp_transport import TestCaseWithSFTPServer
 
41
from breezy.tests.script import run_script
 
42
from breezy.urlutils import local_path_to_url, strip_trailing_slash
 
43
from breezy.workingtree import WorkingTree
44
44
 
45
45
 
46
46
class TestBranch(tests.TestCaseWithTransport):