/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_controldir/__init__.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:
24
24
rather than in tests/per_branch/*.py.
25
25
"""
26
26
 
27
 
from brzlib.controldir import ControlDirFormat
28
 
from brzlib.tests import (
 
27
from breezy.controldir import ControlDirFormat
 
28
from breezy.tests import (
29
29
    default_transport,
30
30
    multiply_tests,
31
31
    test_server,
32
32
    TestCaseWithTransport,
33
33
    )
34
 
from brzlib.transport import memory
 
34
from breezy.transport import memory
35
35
 
36
36
 
37
37
def make_scenarios(vfs_factory, transport_server, transport_readonly_server,
73
73
 
74
74
def load_tests(standard_tests, module, loader):
75
75
    test_per_controldir = [
76
 
        'brzlib.tests.per_controldir.test_controldir',
77
 
        'brzlib.tests.per_controldir.test_format',
78
 
        'brzlib.tests.per_controldir.test_push',
 
76
        'breezy.tests.per_controldir.test_controldir',
 
77
        'breezy.tests.per_controldir.test_format',
 
78
        'breezy.tests.per_controldir.test_push',
79
79
        ]
80
80
    submod_tests = loader.loadTestsFromModuleNames(test_per_controldir)
81
81
    formats = ControlDirFormat.known_formats()
87
87
        None,
88
88
        formats)
89
89
    # This will always add scenarios using the smart server.
90
 
    from brzlib.remote import RemoteBzrDirFormat
 
90
    from breezy.remote import RemoteBzrDirFormat
91
91
    # test the remote server behaviour when backed with a MemoryTransport
92
92
    # Once for the current version
93
93
    scenarios.extend(make_scenarios(