forked from ben-xo/dir2cast
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow overriding of basic properties which an RSS_File_Item will infe…
…r if not set. This allows us to construct the test cases hierarchically as well.
- Loading branch information
Showing
3 changed files
with
53 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php declare(strict_types=1); | ||
|
||
use PHPUnit\Framework\TestCase; | ||
|
||
final class RSS_File_ItemTest extends RSS_ItemTest | ||
{ | ||
public static function setUpBeforeClass(): void | ||
{ | ||
define('MP3_URL', 'http://www.example.com/mp3/'); | ||
define('MP3_DIR', getcwd()); | ||
} | ||
|
||
public function newRSSItem() | ||
{ | ||
return new RSS_File_Item('example.mp3'); | ||
} | ||
|
||
public function getDefaultTitle() | ||
{ | ||
return 'example.mp3'; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters