/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

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
186
186
 
187
187
        if t.is_readonly():
188
188
            return
 
189
        if not t._can_roundtrip_unix_modebits():
 
190
            # Can't roundtrip, so no need to run this test
 
191
            return
189
192
        t.put('mode644', StringIO('test text\n'), mode=0644)
190
193
        self.assertTransportMode(t, 'mode644', 0644)
191
194
        t.put('mode666', StringIO('test text\n'), mode=0666)