Skip to content

Commit

Permalink
Fix default subtitle tests for files with ID3 tags set
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-xo committed Feb 13, 2021
1 parent e613823 commit 1a31543
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 1 deletion.
5 changes: 5 additions & 0 deletions test/Media_RSS_Item_id3v1_artist_album_titleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,9 @@ public function getDefaultTitle()
{
return 'EXAMPLE3';
}

public function getDefaultSubtitle()
{
return 'ARTIST3';
}
}
5 changes: 5 additions & 0 deletions test/Media_RSS_Item_id3v1_artist_titleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,9 @@ public function getDefaultTitle()
{
return 'EXAMPLE2';
}

public function getDefaultSubtitle()
{
return 'ARTIST2';
}
}
5 changes: 5 additions & 0 deletions test/Media_RSS_Item_id3v2_artist_album_titleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,9 @@ public function getDefaultTitle()
{
return 'EXAMPLE7';
}

public function getDefaultSubtitle()
{
return 'ARTIST7';
}
}
7 changes: 6 additions & 1 deletion test/Media_RSS_Item_id3v2_artist_titleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,10 @@ public function getID3Title()
public function getDefaultTitle()
{
return 'EXAMPLE6';
}
}

public function getDefaultSubtitle()
{
return 'ARTIST6';
}
}

0 comments on commit 1a31543

Please sign in to comment.