~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport_implementations.py

Use the Command pattern for smart server request handling

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
class TransportTests(TestTransportImplementation):
47
47
 
 
48
    def setUp(self):
 
49
        super(TransportTests, self).setUp()
 
50
        self._captureVar('BZR_NO_SMART_VFS', None)
 
51
 
48
52
    def check_transport_contents(self, content, transport, relpath):
49
53
        """Check that transport.get(relpath).read() == content."""
50
54
        self.assertEqualDiff(content, transport.get(relpath).read())