aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/tests/Sabre/CardDAV/IDirectoryTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/sabre/dav/tests/Sabre/CardDAV/IDirectoryTest.php')
-rw-r--r--vendor/sabre/dav/tests/Sabre/CardDAV/IDirectoryTest.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/vendor/sabre/dav/tests/Sabre/CardDAV/IDirectoryTest.php b/vendor/sabre/dav/tests/Sabre/CardDAV/IDirectoryTest.php
deleted file mode 100644
index 760749f6c..000000000
--- a/vendor/sabre/dav/tests/Sabre/CardDAV/IDirectoryTest.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Sabre\CardDAV;
-
-use Sabre\DAV;
-
-class IDirectoryTest extends \PHPUnit\Framework\TestCase
-{
- public function testResourceType()
- {
- $tree = [
- new DirectoryMock('directory'),
- ];
-
- $server = new DAV\Server($tree);
- $plugin = new Plugin();
- $server->addPlugin($plugin);
-
- $props = $server->getProperties('directory', ['{DAV:}resourcetype']);
- $this->assertTrue($props['{DAV:}resourcetype']->is('{'.Plugin::NS_CARDDAV.'}directory'));
- }
-}
-
-class DirectoryMock extends DAV\SimpleCollection implements IDirectory
-{
-}