Skip to content

Commit

Permalink
Another variation on the Media_RSS_Item test
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-xo committed Feb 13, 2021
1 parent 543cfc0 commit 27ef20a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions test/Media_RSS_Item_id3v2_commentTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php declare(strict_types=1);

use PHPUnit\Framework\TestCase;

class Media_RSS_Item_id3v2_commentTest extends Media_RSS_ItemTest
{
public function getMediaFileContent()
{
return file_get_contents('fixtures/id3v2_comment.mp3');
}

public function getMediaFileLength()
{
return filesize('fixtures/id3v2_comment.mp3');
}

public function getID3Comment()
{
return 'COMMENT8';
}
}

0 comments on commit 27ef20a

Please sign in to comment.