Example #1
0
 /**
  * @test
  */
 public function extractBaseHrefExtractsBaseHref()
 {
     $baseHref = 'http://example.com/';
     $html = '<html><head><Base Href="' . $baseHref . '" /></head></html>';
     $result = $this->fixture->extractBaseHref($html);
     $this->assertEquals($baseHref, $result);
 }