~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_permissions.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-06-28 07:08:27 UTC
  • mfrom: (2553.1.3 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070628070827-h5s313dg5tnag9vj
(robertc) Show the names of commit hooks during commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
282
282
            t.put_bytes('b', 'txt', mode=0666)
283
283
            self.assertTransportMode(t, 'b', 0666)
284
284
 
285
 
            t._get_sftp().mkdir('c', mode=0777)
 
285
            t._sftp.mkdir('c', mode=0777)
286
286
            self.assertTransportMode(t, 'c', 0777 &~umask)
287
287
 
288
288
            t.mkdir('d', mode=0777)