fkooman\RemoteStorage\DocumentStorageTest::testPutDocumentOnFolder PHP Метод

testPutDocumentOnFolder() публичный Метод

    public function testPutDocumentOnFolder()
    {
        // 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');
        $this->document->putDocument($p, 'Hello World');
    }