Neos\Flow\Tests\Unit\Http\CookieTest::createCookieFromRawAssumesDefaultPathIfNoLeadingSlashIsPresent PHP Method

createCookieFromRawAssumesDefaultPathIfNoLeadingSlashIsPresent() public method

    public function createCookieFromRawAssumesDefaultPathIfNoLeadingSlashIsPresent()
    {
        $cookie = Cookie::createFromRawSetCookieHeader('ckName=someValue; Path=foo');
        $this->assertEquals('/', $cookie->getPath());
    }