fkooman\RemoteStorage\DocumentStorageTest::testPutFolderOnDocument PHP Méthode

testPutFolderOnDocument() public méthode

    public function testPutFolderOnDocument()
    {
        // first write this
        $p = new Path('/foo/bar/baz');
        $this->document->putDocument($p, 'Hello World');
        // now try to write to /foo/bar as a file, bar is already a folder
        $p = new Path('/foo/bar/baz/foo');
        $this->document->putDocument($p, 'Hello World');
    }