friendica-github/simplepie/test/feed_description/SPtests/rss/0.91-userland/description.php
2010-07-05 03:34:42 -07:00

21 lines
No EOL
330 B
PHP

<?php
class SimplePie_Feed_Description_Test_RSS_091_Userland_Description extends SimplePie_Feed_Description_Test
{
function data()
{
$this->data =
'<rss version="0.91">
<channel>
<description>Feed Description</description>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed Description';
}
}
?>