Exemplo n.º 1
0
 public function testLikeContent()
 {
     $html = file_get_contents($this->dir . '/HTML/testLikeContent.html');
     $parser = new Parser();
     $microformats = $parser->getMicroformats($html, null);
     $expected = ['name' => 'Joe Bloggs', 'url' => 'http://joebloggs.com/', 'photo' => 'http://joebloggs.com/photo.png'];
     $this->assertEquals($expected, $parser->likeContent($microformats));
 }