|
|
@@ -3590,6 +3590,7 @@ XML;
|
|
|
'controller' => 'Articles',
|
|
|
'action' => 'index'
|
|
|
],
|
|
|
+ 'url' => '/articles/view',
|
|
|
'base' => '/cakeapp',
|
|
|
'webroot' => '/cakeapp/'
|
|
|
]);
|
|
|
@@ -3597,6 +3598,7 @@ XML;
|
|
|
if ($prop === 'session') {
|
|
|
$this->assertSame($request->getSession(), $request->getAttribute($prop));
|
|
|
} else {
|
|
|
+ $this->assertNotEmpty($request->getAttribute($prop));
|
|
|
$this->assertSame($request->{$prop}, $request->getAttribute($prop));
|
|
|
}
|
|
|
});
|
|
|
@@ -3733,6 +3735,7 @@ XML;
|
|
|
public function emulatedPropertyProvider()
|
|
|
{
|
|
|
return [
|
|
|
+ ['here'],
|
|
|
['params'],
|
|
|
['base'],
|
|
|
['webroot'],
|