fkooman\RemoteStorage\RemoteStorageTest::testPutDocumentIfNoneMatchStarFail PHP Method

testPutDocumentIfNoneMatchStarFail() public method

    public function testPutDocumentIfNoneMatchStarFail()
    {
        $p1 = new Path('/admin/messages/foo/hello.txt');
        $this->r->putDocument($p1, 'text/plain', 'Hello World', null, array('*'));
        // document already exists now, so we fail
        $this->r->putDocument($p1, 'text/plain', 'Hello World', null, array('*'));
    }