]> git.mxchange.org Git - friendica-addons.git/blob - dav/SabreDAV/tests/Sabre/DAV/Locks/Backend/FSTest.php
ddf4f500ed745b843ad88badf187da7d145517fa
[friendica-addons.git] / dav / SabreDAV / tests / Sabre / DAV / Locks / Backend / FSTest.php
1 <?php
2
3 require_once 'Sabre/TestUtil.php';
4
5 class Sabre_DAV_Locks_Backend_FSTest extends Sabre_DAV_Locks_Backend_AbstractTest {
6
7     function getBackend() {
8
9         Sabre_TestUtil::clearTempDir();
10         mkdir(SABRE_TEMPDIR . '/locks');
11         $backend = new Sabre_DAV_Locks_Backend_FS(SABRE_TEMPDIR . '/locks/');
12         return $backend;
13
14     }
15
16     function tearDown() {
17
18         Sabre_TestUtil::clearTempDir();
19
20     }
21
22     function testGetLocksChildren() {
23
24         // We're skipping this test. This doesn't work, and it will
25         // never. The class is deprecated anyway.
26
27     }
28
29 }