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

Setting NO_SMART_VFS in environment will disable VFS methods in the smart server. (Robert Collins, John Arbash Meinel, Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
 
55
55
class TransportTests(TestTransportImplementation):
56
56
 
 
57
    def setUp(self):
 
58
        super(TransportTests, self).setUp()
 
59
        self._captureVar('NO_SMART_VFS', None)
 
60
 
57
61
    def check_transport_contents(self, content, transport, relpath):
58
62
        """Check that transport.get(relpath).read() == content."""
59
63
        self.assertEqualDiff(content, transport.get(relpath).read())