Exemple #1
0
 public function testFakeAutoEmbed()
 {
     $text = 'Hey Checkout this video http://www.youtube.com/watch?v=MpVHQnIvTXo, Its just great';
     $embera = new \Embera\Embera(array('oembed' => false));
     $result = $embera->autoEmbed($text);
     $this->assertContains('<iframe', $result);
     $this->assertEmpty($embera->getLastError());
 }