1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00
Arsse/tests/docroot/Import/some-feed.php
2021-01-08 16:46:21 -05:00

18 lines
520 B
PHP

<?php return [
'mime' => "application/rss+xml",
'content' => <<<MESSAGE_BODY
<rss version="2.0">
<channel>
<title>Some feed</title>
<link>http://localhost:8000/</link>
<description>Just a generic feed</description>
<item>
<guid>http://localhost:8000/Import/some-feed/some-article</guid>
<title>Some article</title>
<description>This feed is used only to demonstrate failure modes external to the feed itself</description>
</item>
</channel>
</rss>
MESSAGE_BODY
];