~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport_implementations.py

  • Committer: John Arbash Meinel
  • Date: 2006-07-07 15:22:42 UTC
  • mfrom: (1843 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1846.
  • Revision ID: john@arbash-meinel.com-20060707152242-a7b5e0afd64d9d5a
[merge] bzr.dev 1843

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)