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/Feed/Caching/200PubDateOnly.php

20 lines
454 B
PHP
Raw Normal View History

<?php return [
'code' => 200,
'cache' => false,
2017-05-22 21:06:01 +00:00
'mime' => "application/rss+xml",
'content' => <<<MESSAGE_BODY
<rss version="2.0">
<channel>
<title>Test feed</title>
<link>http://localhost:8000/</link>
<description>A basic feed for testing</description>
<item>
<description>Sample article</description>
<pubDate>Sun, 19 May 2002 15:21:36 GMT</pubDate>
</item>
</channel>
</rss>
MESSAGE_BODY
2017-08-29 14:50:31 +00:00
];