Neos\Flow\Tests\Unit\Http\RequestTest::getRelativePathReturnsEmptyStringForHomepage PHP Method

getRelativePathReturnsEmptyStringForHomepage() public method

    public function getRelativePathReturnsEmptyStringForHomepage()
    {
        $request = Request::create(new Uri('http://dev.blog.rob/'), 'GET');
        $relativePath = $request->getRelativePath();
        $this->assertSame($relativePath, '');
    }
RequestTest