/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_transport.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:
27
27
import stat
28
28
import sys
29
29
 
30
 
from brzlib import (
 
30
from breezy import (
31
31
    errors,
32
32
    osutils,
33
33
    pyutils,
35
35
    transport as _mod_transport,
36
36
    urlutils,
37
37
    )
38
 
from brzlib.errors import (ConnectionError,
 
38
from breezy.errors import (ConnectionError,
39
39
                           FileExists,
40
40
                           InvalidURL,
41
41
                           NoSuchFile,
42
42
                           PathError,
43
43
                           TransportNotPossible,
44
44
                           )
45
 
from brzlib.osutils import getcwd
46
 
from brzlib.smart import medium
47
 
from brzlib.tests import (
 
45
from breezy.osutils import getcwd
 
46
from breezy.smart import medium
 
47
from breezy.tests import (
48
48
    TestSkipped,
49
49
    TestNotApplicable,
50
50
    multiply_tests,
51
51
    )
52
 
from brzlib.tests import test_server
53
 
from brzlib.tests.test_transport import TestTransportImplementation
54
 
from brzlib.transport import (
 
52
from breezy.tests import test_server
 
53
from breezy.tests.test_transport import TestTransportImplementation
 
54
from breezy.transport import (
55
55
    ConnectedTransport,
56
56
    Transport,
57
57
    _get_transport_modules,
58
58
    )
59
 
from brzlib.transport.memory import MemoryTransport
60
 
from brzlib.transport.remote import RemoteTransport
 
59
from breezy.transport.memory import MemoryTransport
 
60
from breezy.transport.remote import RemoteTransport
61
61
 
62
62
 
63
63
def get_transport_test_permutations(module):