Skip to content

Commit

Permalink
Add M4A and MP4 Item tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-xo committed Feb 14, 2021
1 parent b54028b commit 2a6d62f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions test/M4A_RSS_ItemTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php declare(strict_types=1);

use PHPUnit\Framework\TestCase;

class M4A_RSS_ItemTest extends Media_RSS_ItemTest
{
public function getDefaultType()
{
return 'audio/mp4';
}

protected $media_rss_item_class = 'M4A_RSS_Item';
}
13 changes: 13 additions & 0 deletions test/MP4_RSS_ItemTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php declare(strict_types=1);

use PHPUnit\Framework\TestCase;

class MP4_RSS_ItemTest extends Media_RSS_ItemTest
{
public function getDefaultType()
{
return 'video/mp4';
}

protected $media_rss_item_class = 'MP4_RSS_Item';
}

0 comments on commit 2a6d62f

Please sign in to comment.