Example #1
0
 public function testNeedsEsiParsing()
 {
     $esi = new Esi();
     $response = new Response();
     $response->headers->set('Surrogate-Control', 'content="ESI/1.0"');
     $this->assertTrue($esi->needsParsing($response));
     $response = new Response();
     $this->assertFalse($esi->needsParsing($response));
 }