~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_lockable_files.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-04-19 08:31:08 UTC
  • mfrom: (1666.1.5 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060419083108-fab2970f4575b010
Change the default branch format to be metadir. (Robert Collins, Aaron Bentley).

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):