2017-05-26 21:55:51 +00:00
|
|
|
<?php return [
|
|
|
|
'mime' => "application/rss+xml",
|
|
|
|
'content' => <<<MESSAGE_BODY
|
|
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
|
|
<channel>
|
|
|
|
<title>Test feed</title>
|
|
|
|
<link>http://example.com/</link>
|
|
|
|
<description>A basic feed for testing</description>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<title>Article The First</title>
|
|
|
|
<link>http://example.com/1</link> <!-- This is the correct item -->
|
|
|
|
<description>Sample article 1</description>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<title>Article The First</title>
|
|
|
|
<link>http://example.com/1?</link>
|
|
|
|
<description>Sample article 1</description>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<title>Article The First</title>
|
|
|
|
<link>http://example.com/1?ook=</link>
|
|
|
|
<description>Sample article 1</description>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<title>Article The Second</title>
|
|
|
|
<link>http://example.com/2</link>
|
|
|
|
<description>Sample article 4</description>
|
|
|
|
</item>
|
|
|
|
</channel>
|
|
|
|
</rss>
|
|
|
|
MESSAGE_BODY
|
2017-08-29 14:50:31 +00:00
|
|
|
];
|