(self, tmpdir)
| 100 | cache.close() |
| 101 | |
| 102 | def test_lock_class(self, tmpdir): |
| 103 | lock_class = object() |
| 104 | cache = self.FileCacheClass(str(tmpdir), lock_class=lock_class) |
| 105 | assert cache.lock_class is lock_class |
| 106 | cache.close() |
| 107 | |
| 108 | def test_filecache_with_delete_request(self, tmpdir, sess): |
| 109 | # verifies issue #155 |