~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-06-29 04:05:02 UTC
  • mto: (1711.7.2 win32)
  • mto: This revision was merged to the branch mainline in revision 1822.
  • Revision ID: john@arbash-meinel.com-20060629040502-1a8b492e860320d9
Skip permission tests on win32 no modebits

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)