/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 bzrlib/tests/blackbox/test_serve.py

  • Committer: Andrew Bennetts
  • Date: 2007-04-05 15:20:57 UTC
  • mto: This revision was merged to the branch mainline in revision 2402.
  • Revision ID: andrew.bennetts@canonical.com-20070405152057-gokz8syll1lk2nrm
Rename bzrlib/transport/smart.py to bzrlib/transport/remote.py.

First part of the code reorganisation from the hpss branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
from bzrlib.bzrdir import BzrDir
32
32
from bzrlib.errors import ParamikoNotPresent
33
33
from bzrlib.tests import TestCaseWithTransport, TestSkipped
34
 
from bzrlib.transport import get_transport, smart
 
34
from bzrlib.transport import get_transport, remote
35
35
 
36
36
 
37
37
class TestBzrServe(TestCaseWithTransport):
68
68
        # Connect to the server
69
69
        # We use this url because while this is no valid URL to connect to this
70
70
        # server instance, the transport needs a URL.
71
 
        medium = smart.SmartSimplePipesClientMedium(
 
71
        medium = remote.SmartSimplePipesClientMedium(
72
72
            process.stdout, process.stdin)
73
 
        transport = smart.SmartTransport('bzr://localhost/', medium=medium)
 
73
        transport = remote.SmartTransport('bzr://localhost/', medium=medium)
74
74
        return process, transport
75
75
 
76
76
    def start_server_port(self, extra_options=()):