fkooman\RemoteStorage\RemoteStorageTest::testGetFolderIfMatch PHP Method

testGetFolderIfMatch() public method

    public function testGetFolderIfMatch()
    {
        $p1 = new Path('/admin/messages/foo/hello.txt');
        $p2 = new Path('/admin/messages/foo/');
        $this->r->putDocument($p1, 'text/plain', 'Hello World');
        $folderVersion = $this->r->getVersion($p2);
        $this->r->getFolder($p2, array($folderVersion));
    }