/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/__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:
26
26
specific to BzrDir are in tests/per_controldir/*.py.
27
27
"""
28
28
 
29
 
from brzlib.bzrdir import BzrDirFormat
30
 
from brzlib.controldir import ControlDirFormat
31
 
from brzlib.tests import (
 
29
from breezy.bzrdir import BzrDirFormat
 
30
from breezy.controldir import ControlDirFormat
 
31
from breezy.tests import (
32
32
    default_transport,
33
33
    multiply_tests,
34
34
    test_server,
35
35
    TestCaseWithTransport,
36
36
    )
37
 
from brzlib.tests.per_controldir import make_scenarios
38
 
from brzlib.transport import memory
 
37
from breezy.tests.per_controldir import make_scenarios
 
38
from breezy.transport import memory
39
39
 
40
40
 
41
41
class TestCaseWithBzrDir(TestCaseWithTransport):
55
55
 
56
56
def load_tests(standard_tests, module, loader):
57
57
    test_per_bzrdir = [
58
 
        'brzlib.tests.per_bzrdir.test_bzrdir',
 
58
        'breezy.tests.per_bzrdir.test_bzrdir',
59
59
        ]
60
60
    submod_tests = loader.loadTestsFromModuleNames(test_per_bzrdir)
61
61
    formats = [format for format in ControlDirFormat.known_formats()
68
68
        None,
69
69
        formats)
70
70
    # This will always add scenarios using the smart server.
71
 
    from brzlib.remote import RemoteBzrDirFormat
 
71
    from breezy.remote import RemoteBzrDirFormat
72
72
    # test the remote server behaviour when backed with a MemoryTransport
73
73
    # Once for the current version
74
74
    scenarios.extend(make_scenarios(