1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 17:12:41 +00:00
Arsse/tests/docroot/Import/some-feed.php

19 lines
517 B
PHP
Raw Normal View History

2019-07-25 17:14:29 +00:00
<?php return [
'mime' => "application/rss+xml",
'content' => <<<MESSAGE_BODY
<rss version="2.0">
<channel>
<title>Some feed</title>
<link>http://example.com/</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
];