~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/fakenfs.py

  • Committer: Andrew Bennetts
  • Date: 2010-01-18 07:00:11 UTC
  • mto: (4973.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4975.
  • Revision ID: andrew.bennetts@canonical.com-20100118070011-zu374wvd0lcgai5a
Move news_merge plugin from contrib to bzrlib/plugins, change it to be enabled via a 'news_merge_files' config option, move more code out of the __init__ to minimise overhead, and add lots of docstrings, add NEWS entry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
    errors,
29
29
    urlutils,
30
30
    )
31
 
from bzrlib.transport import decorator
32
 
 
33
 
 
34
 
class FakeNFSTransportDecorator(decorator.TransportDecorator):
 
31
from bzrlib.transport.decorator import TransportDecorator, DecoratorServer
 
32
 
 
33
 
 
34
class FakeNFSTransportDecorator(TransportDecorator):
35
35
    """A transport that behaves like NFS, for testing"""
36
36
 
37
37
    @classmethod
62
62
        return self._decorated.delete(relpath)
63
63
 
64
64
 
 
65
class FakeNFSServer(DecoratorServer):
 
66
    """Server for the FakeNFSTransportDecorator for testing with."""
 
67
 
 
68
    def get_decorator_class(self):
 
69
        return FakeNFSTransportDecorator
 
70
 
 
71
 
65
72
def get_test_permutations():
66
73
    """Return the permutations to be used in testing."""
67
 
    from bzrlib.tests import test_server
68
 
    return [(FakeNFSTransportDecorator, test_server.FakeNFSServer),]
 
74
    return [(FakeNFSTransportDecorator, FakeNFSServer),
 
75
            ]