Coverage for tests/test_lock : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
def test_lock_without_namespace_creates_nil_namespace(self, context):
os.path.exists( os.path.join(lck.BASE_DIR, '.nil')))
def test_lock_with_namespace_creates_namespace(self, context):
os.path.exists( os.path.join(lck.BASE_DIR, 'namespace')))
def test_lock_without_namespace_creates_file(self, context):
os.path.exists( os.path.join(lck.BASE_DIR, '.nil', 'somename')))
def test_lock_with_namespace_creates_file(self, context):
os.path.exists( os.path.join(lck.BASE_DIR, 'namespace', 'somename')))
def test_lock_file_create_fails_retried(self, context):
os.path.exists( os.path.join(lck.BASE_DIR, 'namespace', 'somename')))
|