/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 19:09:26 UTC
  • mfrom: (6622.1.36 breezy)
  • Revision ID: jelmer@jelmer.uk-20170521190926-5vtz8xaf0e9ylrpc
Merge rename to 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 bzrlib 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 bzrlib.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 bzrlib.osutils import getcwd
46
 
from bzrlib.smart import medium
47
 
from bzrlib.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 bzrlib.tests import test_server
53
 
from bzrlib.tests.test_transport import TestTransportImplementation
54
 
from bzrlib.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 bzrlib.transport.memory import MemoryTransport
60
 
from bzrlib.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):
100
100
 
101
101
    def setUp(self):
102
102
        super(TransportTests, self).setUp()
103
 
        self.overrideEnv('BZR_NO_SMART_VFS', None)
 
103
        self.overrideEnv('BRZ_NO_SMART_VFS', None)
104
104
 
105
105
    def check_transport_contents(self, content, transport, relpath):
106
106
        """Check that transport.get_bytes(relpath) == content."""