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.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/vendor/sabre/dav/tests/Sabre/CardDAV/IDirectoryTest.php b/vendor/sabre/dav/tests/Sabre/CardDAV/IDirectoryTest.php
new file mode 100644
index 000000000..431cd2524
--- /dev/null
+++ b/vendor/sabre/dav/tests/Sabre/CardDAV/IDirectoryTest.php
@@ -0,0 +1,30 @@
+<?php
+
+namespace Sabre\CardDAV;
+
+use Sabre\DAV;
+
+class IDirectoryTest extends \PHPUnit_Framework_TestCase {
+
+ function testResourceType() {
+
+ $tree = array(
+ new DirectoryMock('directory')
+ );
+
+ $server = new DAV\Server($tree);
+ $plugin = new Plugin();
+ $server->addPlugin($plugin);
+
+ $props = $server->getProperties('directory', array('{DAV:}resourcetype'));
+ $this->assertTrue($props['{DAV:}resourcetype']->is('{' . Plugin::NS_CARDDAV . '}directory'));
+
+ }
+
+}
+
+class DirectoryMock extends DAV\SimpleCollection implements IDirectory {
+
+
+
+}