/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/test_transport.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-11 02:16:42 UTC
  • mfrom: (5017.1.2 initialize)
  • Revision ID: pqm@pqm.ubuntu.com-20100211021642-eitum30b2e09oalf
(mbp) Add bzrlib.initialize

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
    pathfilter,
37
37
    readonly,
38
38
    )
39
 
from bzrlib.tests import (
40
 
    features,
41
 
    test_server,
42
 
    )
 
39
from bzrlib.tests import features
43
40
 
44
41
 
45
42
# TODO: Should possibly split transport-specific tests into their own files.
596
593
 
597
594
    def test_fakenfs_server_default(self):
598
595
        # a FakeNFSServer() should bring up a local relpath server for itself
599
 
        server = test_server.FakeNFSServer()
 
596
        server = fakenfs.FakeNFSServer()
600
597
        self.start_server(server)
601
598
        # the url should be decorated appropriately
602
599
        self.assertStartsWith(server.get_url(), 'fakenfs+')