mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 19:31:10 +00:00
21 lines
447 B
PHP
21 lines
447 B
PHP
<?php
|
|
|
|
require_once 'Sabre/CalDAV/Backend/AbstractPDOTest.php';
|
|
|
|
class Sabre_CalDAV_Backend_PDOSQLiteTest extends Sabre_CalDAV_Backend_AbstractPDOTest {
|
|
|
|
function setup() {
|
|
|
|
if (!SABRE_HASSQLITE) $this->markTestSkipped('SQLite driver is not available');
|
|
$this->pdo = Sabre_CalDAV_TestUtil::getSQLiteDB();
|
|
|
|
}
|
|
|
|
function teardown() {
|
|
|
|
$this->pdo = null;
|
|
unlink(SABRE_TEMPDIR . '/testdb.sqlite');
|
|
|
|
}
|
|
|
|
}
|