streams/vendor/sabre/dav/tests/Sabre/CardDAV/IDirectoryTest.php

31 lines
607 B
PHP
Raw Normal View History

<?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 {
}