updated packages
This commit is contained in:
@@ -35,7 +35,7 @@ class SsiFragmentRendererTest extends TestCase
|
||||
$request->headers->set('Surrogate-Capability', 'SSI/1.0');
|
||||
|
||||
$this->assertEquals('<!--#include virtual="/" -->', $strategy->render('/', $request)->getContent());
|
||||
$this->assertEquals('<!--#include virtual="/" -->', $strategy->render('/', $request, array('comment' => 'This is a comment'))->getContent(), 'Strategy options should not impact the ssi include tag');
|
||||
$this->assertEquals('<!--#include virtual="/" -->', $strategy->render('/', $request, ['comment' => 'This is a comment'])->getContent(), 'Strategy options should not impact the ssi include tag');
|
||||
}
|
||||
|
||||
public function testRenderControllerReference()
|
||||
@@ -47,12 +47,12 @@ class SsiFragmentRendererTest extends TestCase
|
||||
$request->setLocale('fr');
|
||||
$request->headers->set('Surrogate-Capability', 'SSI/1.0');
|
||||
|
||||
$reference = new ControllerReference('main_controller', array(), array());
|
||||
$altReference = new ControllerReference('alt_controller', array(), array());
|
||||
$reference = new ControllerReference('main_controller', [], []);
|
||||
$altReference = new ControllerReference('alt_controller', [], []);
|
||||
|
||||
$this->assertEquals(
|
||||
'<!--#include virtual="/_fragment?_hash=Jz1P8NErmhKTeI6onI1EdAXTB85359MY3RIk5mSJ60w%3D&_path=_format%3Dhtml%26_locale%3Dfr%26_controller%3Dmain_controller" -->',
|
||||
$strategy->render($reference, $request, array('alt' => $altReference))->getContent()
|
||||
$strategy->render($reference, $request, ['alt' => $altReference])->getContent()
|
||||
);
|
||||
}
|
||||
|
||||
@@ -81,7 +81,7 @@ class SsiFragmentRendererTest extends TestCase
|
||||
$request->setLocale('fr');
|
||||
$request->headers->set('Surrogate-Capability', 'SSI/1.0');
|
||||
|
||||
$strategy->render('/', $request, array('alt' => new ControllerReference('alt_controller')));
|
||||
$strategy->render('/', $request, ['alt' => new ControllerReference('alt_controller')]);
|
||||
}
|
||||
|
||||
private function getInlineStrategy($called = false)
|
||||
|
||||
Reference in New Issue
Block a user