~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_lockable_files.py

  • Committer: Robert Collins
  • Date: 2006-03-28 14:29:13 UTC
  • mto: (1626.2.1 integration)
  • mto: This revision was merged to the branch mainline in revision 1628.
  • Revision ID: robertc@robertcollins.net-20060328142913-ac5afb37075719c6
Convert log to use the new tsort.merge_sort routine.

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
126
122
        self.lockable.create_lock()
127
123
 
128
124
    def test_lock_is_lockdir(self):