/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 brzlib/transport/fakenfs.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 14:47:52 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521144752-8o6jt0a6xat9g7lm
More renames; commands in output, environment variables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
To get a fake nfs transport use get_transport('fakenfs+' + real_url)
23
23
"""
24
24
 
 
25
from __future__ import absolute_import
 
26
 
25
27
from stat import S_ISDIR
26
28
 
27
 
from bzrlib import (
 
29
from brzlib import (
28
30
    errors,
29
31
    urlutils,
30
32
    )
31
 
from bzrlib.transport import decorator
 
33
from brzlib.transport import decorator
32
34
 
33
35
 
34
36
class FakeNFSTransportDecorator(decorator.TransportDecorator):
64
66
 
65
67
def get_test_permutations():
66
68
    """Return the permutations to be used in testing."""
67
 
    from bzrlib.tests import test_server
 
69
    from brzlib.tests import test_server
68
70
    return [(FakeNFSTransportDecorator, test_server.FakeNFSServer),]