]> git.mxchange.org Git - friendica-addons.git/blob - dav/SabreDAV/tests/Sabre/CalDAV/Backend/PDOSqliteTest.php
Merge branch 'master' of git://github.com/friendica/friendica-addons
[friendica-addons.git] / dav / SabreDAV / tests / Sabre / CalDAV / Backend / PDOSqliteTest.php
1 <?php
2
3 require_once 'Sabre/CalDAV/Backend/AbstractPDOTest.php';
4
5 class Sabre_CalDAV_Backend_PDOSQLiteTest extends Sabre_CalDAV_Backend_AbstractPDOTest {
6
7     function setup() {
8
9         if (!SABRE_HASSQLITE) $this->markTestSkipped('SQLite driver is not available');
10         $this->pdo = Sabre_CalDAV_TestUtil::getSQLiteDB();
11
12     }
13
14     function teardown() {
15
16         $this->pdo = null;
17         unlink(SABRE_TEMPDIR . '/testdb.sqlite');
18
19     }
20
21 }