Jarves\Tests\Jarves\ToolsTest::testRelativePath PHP Method

testRelativePath() public method

public testRelativePath ( )
    public function testRelativePath()
    {
        $relative = Tools::getRelativePath('/anotherroot/web/file', '/root/web/other/dir');
        $this->assertEquals('../../../../anotherroot/web/file', $relative);
        $relative = Tools::getRelativePath('/root/web/file', '/root/web/other/dir');
        $this->assertEquals('../../file', $relative);
        $relative = Tools::getRelativePath('/root/web/dir/file/', '/root/web/dir');
        $this->assertEquals('file', $relative);
        $relative = Tools::getRelativePath('/root/web/other/file/', '/root/web/dir');
        $this->assertEquals('../other/file', $relative);
    }