~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_server.py

  • Committer: Vincent Ladeuil
  • Date: 2010-02-09 17:24:11 UTC
  • mto: (5029.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5030.
  • Revision ID: v.ladeuil+lp@free.fr-20100209172411-crac3tglyj88bbqd
Move TraceServer to bzrlib.tests.test_server

Show diffs side-by-side

added added

removed removed

Lines of Context:
172
172
        return readonly.ReadonlyTransportDecorator
173
173
 
174
174
 
 
175
class TraceServer(DecoratorServer):
 
176
    """Server for the TransportTraceDecorator for testing with."""
 
177
 
 
178
    def get_decorator_class(self):
 
179
        from bzrlib.transport import trace
 
180
        return TransportTraceDecorator
 
181
 
 
182