~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_lockable_files.py

  • Committer: Martin Pool
  • Date: 2006-04-20 02:42:17 UTC
  • mfrom: (1674 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1675.
  • Revision ID: mbp@sourcefrog.net-20060420024217-e7530e10e384d5dd
[merge] bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
119
119
        super(TestLockableFiles_LockDir, self).setUp()
120
120
        self.transport = get_transport('.')
121
121
        self.lockable = LockableFiles(self.transport, 'my-lock', LockDir)
 
122
        # the lock creation here sets mode - test_permissions on branch 
 
123
        # tests that implicitly, but it might be a good idea to factor 
 
124
        # out the mode checking logic and have it applied to loackable files
 
125
        # directly. RBC 20060418
122
126
        self.lockable.create_lock()
123
127
 
124
128
    def test_lock_is_lockdir(self):