~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_cat.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-11 10:01:21 UTC
  • mfrom: (5029.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100211100121-dqc7ja698m73k3tu
(vila) Move tests servers from bzrlib.transport to
        bzrlib.tests.test_server

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
import os
23
23
 
24
24
from bzrlib import tests
 
25
from bzrlib.transport import memory
25
26
 
26
27
 
27
28
class TestCat(tests.TestCaseWithTransport):
195
196
        self.assertEqual('contents of README\n', out)
196
197
 
197
198
    def test_cat_nonexistent_branch(self):
198
 
        self.vfs_transport_factory = tests.MemoryServer
 
199
        self.vfs_transport_factory = memory.MemoryServer
199
200
        self.run_bzr_error(['^bzr: ERROR: Not a branch'],
200
201
                           ['cat', self.get_url()])