~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/local.py

Minimal infrastructure to test TransportTestProviderAdapter.

Show diffs side-by-side

added added

removed removed

Lines of Context:
245
245
    def __del__(self):
246
246
        shutil.rmtree(self.base, ignore_errors=True)
247
247
        mutter("%r destroyed" % self)
 
248
 
 
249
 
 
250
class LocalRelpathServer(object):
 
251
    """A pretend server for local transports, using relpaths."""
 
252
 
 
253
 
 
254
class LocalAbspathServer(object):
 
255
    """A pretend server for local transports, using absolute paths."""
 
256
 
 
257
 
 
258
class LocalURLServer(object):
 
259
    """A pretend server for local transports, using file:// urls."""