Skip to content

Commit

Permalink
Auto-fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Sep 4, 2019
1 parent c7a8d46 commit 297c416
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/MediaEmbedTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,9 @@ public function testYoutube() {
$this->assertContains('//www.youtube.com/embed/h9Pu4bZqWyg', $src);
}

/**
* @return void
*/
public function testYoutubeWithoutIframe() {
$MediaEmbed = new MediaEmbed(['prefer' => 'object']);
$Object = $MediaEmbed->parseUrl('http://www.youtube.com/watch?v=h9Pu4bZqWyg');
Expand All @@ -226,6 +229,9 @@ public function testYoutubeWithoutIframe() {
$this->assertNotContains('<iframe', $code);
}

/**
* @return void
*/
public function testDailymotion() {
$MediaEmbed = new MediaEmbed();

Expand All @@ -251,6 +257,9 @@ public function testDailymotion() {
$this->assertEquals('https://www.dailymotion.com/thumbnail/160x120/video/x6x039x', $img);
}

/**
* @return void
*/
public function testMatterport() {
$mediaEmbed = new MediaEmbed();

Expand Down

0 comments on commit 297c416

Please sign in to comment.