1
0
mirror of https://github.com/Chouchen/ShikiryuRSS.git synced 2025-09-06 01:14:32 +02:00

Starts refactoring reader

Still missing media:group
This commit is contained in:
Shikiryu
2023-04-06 00:38:26 +02:00
parent a55b05d734
commit 4783124a1d
12 changed files with 288 additions and 111 deletions

View File

@@ -11,6 +11,7 @@ class BasicReader extends TestCase
$rss = SRSS::read(__DIR__.'/resources/basic.xml');
self::assertEquals('test Home Page', $rss->title);
$first_item = $rss->getFirst();
self::assertNotNull($first_item);
self::assertEquals('RSS Tutorial', $first_item->title);
}