mirror of
https://github.com/friendica/friendica
synced 2025-01-09 02:44:46 +00:00
21 lines
No EOL
319 B
PHP
21 lines
No EOL
319 B
PHP
<?php
|
|
|
|
class SimplePie_Feed_Description_Test_RSS_20_Description extends SimplePie_Feed_Description_Test
|
|
{
|
|
function data()
|
|
{
|
|
$this->data =
|
|
'<rss version="2.0">
|
|
<channel>
|
|
<description>Feed Description</description>
|
|
</channel>
|
|
</rss>';
|
|
}
|
|
|
|
function expected()
|
|
{
|
|
$this->expected = 'Feed Description';
|
|
}
|
|
}
|
|
|
|
?>
|