fkooman\RemoteStorage\MetadataStorageTest::testUpdateFolder PHP Method

testUpdateFolder() public method

public testUpdateFolder ( )
    public function testUpdateFolder()
    {
        $p = new Path('/foo/bar/baz/');
        $this->assertNull($this->md->getVersion($p));
        $this->md->updateFolder($p);
        $this->assertNotNull($this->md->getVersion($p));
    }