~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport_implementations.py

  • Committer: Martin Pool
  • Date: 2006-04-12 04:45:32 UTC
  • mfrom: (1608.2.13 bzr.mbp.escape-stores)
  • mto: This revision was merged to the branch mainline in revision 1657.
  • Revision ID: mbp@sourcefrog.net-20060412044532-fc8c5c9408aae88b
[merge][wip] Storage escaping

Show diffs side-by-side

added added

removed removed

Lines of Context:
247
247
        t = self.get_transport()
248
248
        if t.is_readonly():
249
249
            return
 
250
        if not t._can_roundtrip_unix_modebits():
 
251
            # no sense testing on this transport
 
252
            return
250
253
        # Test mkdir with a mode
251
254
        t.mkdir('dmode755', mode=0755)
252
255
        self.assertTransportMode(t, 'dmode755', 0755)