~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_lockdir.py

  • Committer: John Arbash Meinel
  • Date: 2010-09-25 20:36:33 UTC
  • mto: This revision was merged to the branch mainline in revision 5445.
  • Revision ID: john@arbash-meinel.com-20100925203633-y0ipdyceuupti08w
Have to handle when details is None

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
    LockNotHeld,
40
40
    )
41
41
from bzrlib.lockdir import LockDir
42
 
from bzrlib.tests import (features, TestCaseWithTransport)
 
42
from bzrlib.tests import TestCaseWithTransport
43
43
from bzrlib.trace import note
44
44
 
45
45
# These tests sometimes use threads to test the behaviour of lock files with
667
667
        ld1.unlock()
668
668
 
669
669
    def test_lock_permission(self):
670
 
        self.requireFeature(features.not_running_as_root)
671
670
        if not osutils.supports_posix_readonly():
672
671
            raise tests.TestSkipped('Cannot induce a permission failure')
673
672
        ld1 = self.get_lock()