Carew\Tests\DocumentTest::getGetRootPathTests PHP Method

getGetRootPathTests() public method

public getGetRootPathTests ( )
    public function getGetRootPathTests()
    {
        return array(array('.', ''), array('.', '/'), array('.', 'index.html'), array('.', '/index.html'), array('..', '/foo/'), array('..', 'foo/index.html'), array('..', '/foo/index.html'), array('../..', '/foo/bar/'), array('../..', 'foo/bar/index.html'), array('../..', '/foo/bar/index.html'), array('../../..', '/foo/bar/baz/'));
    }