~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/memory.py

  • Committer: Martin Pool
  • Date: 2009-11-16 02:26:32 UTC
  • mto: This revision was merged to the branch mainline in revision 4880.
  • Revision ID: mbp@sourcefrog.net-20091116022632-261trs2osy8oupe3
Convert version-info to use TextUIOutputStream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
27
27
from cStringIO import StringIO
28
28
import warnings
29
29
 
30
 
from bzrlib import (
31
 
    urlutils,
32
 
    )
33
30
from bzrlib.errors import (
34
31
    FileExists,
35
32
    LockError,
45
42
    register_transport,
46
43
    Server,
47
44
    Transport,
48
 
    unregister_transport,
49
45
    )
 
46
import bzrlib.urlutils as urlutils
50
47
 
51
48
 
52
49
 
306
303
class MemoryServer(Server):
307
304
    """Server for the MemoryTransport for testing with."""
308
305
 
309
 
    def start_server(self):
 
306
    def setUp(self):
 
307
        """See bzrlib.transport.Server.setUp."""
310
308
        self._dirs = {'/':None}
311
309
        self._files = {}
312
310
        self._locks = {}
317
315
            result._files = self._files
318
316
            result._locks = self._locks
319
317
            return result
320
 
        self._memory_factory = memory_factory
321
 
        register_transport(self._scheme, self._memory_factory)
 
318
        register_transport(self._scheme, memory_factory)
322
319
 
323
 
    def stop_server(self):
 
320
    def tearDown(self):
 
321
        """See bzrlib.transport.Server.tearDown."""
324
322
        # unregister this server
325
 
        unregister_transport(self._scheme, self._memory_factory)
326
323
 
327
324
    def get_url(self):
328
325
        """See bzrlib.transport.Server.get_url."""