File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/Symfony/Component/HttpKernel Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 16
16
use Symfony \Component \HttpKernel \UriSigner ;
17
17
18
18
/**
19
- * Implements the ESI rendering strategy.
19
+ * Implements the SSI rendering strategy.
20
20
*
21
21
* @author Sebastian Krebs <krebs.seb@gmail.com>
22
22
*/
Original file line number Diff line number Diff line change 17
17
18
18
class SsiTest extends \PHPUnit_Framework_TestCase
19
19
{
20
- public function testHasSurrogateEsiCapability ()
20
+ public function testHasSurrogateSsiCapability ()
21
21
{
22
22
$ ssi = new Ssi ();
23
23
@@ -33,7 +33,7 @@ public function testHasSurrogateEsiCapability()
33
33
$ this ->assertFalse ($ ssi ->hasSurrogateCapability ($ request ));
34
34
}
35
35
36
- public function testAddSurrogateEsiCapability ()
36
+ public function testAddSurrogateSsiCapability ()
37
37
{
38
38
$ ssi = new Ssi ();
39
39
@@ -58,7 +58,7 @@ public function testAddSurrogateControl()
58
58
$ this ->assertEquals ('' , $ response ->headers ->get ('Surrogate-Control ' ));
59
59
}
60
60
61
- public function testNeedsEsiParsing ()
61
+ public function testNeedsSsiParsing ()
62
62
{
63
63
$ ssi = new Ssi ();
64
64
@@ -117,7 +117,7 @@ public function testProcessEscapesPhpTags()
117
117
/**
118
118
* @expectedException \RuntimeException
119
119
*/
120
- public function testProcessWhenNoSrcInAnEsi ()
120
+ public function testProcessWhenNoSrcInAnSsi ()
121
121
{
122
122
$ ssi = new Ssi ();
123
123
You can’t perform that action at this time.
0 commit comments