21 lines
402 B
PHP
21 lines
402 B
PHP
<?php
|
|
|
|
class SimplePie_Feed_Description_Test_RSS_10_Description extends SimplePie_Feed_Description_Test
|
|
{
|
|
function data()
|
|
{
|
|
$this->data =
|
|
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/">
|
|
<channel>
|
|
<description>Feed Description</description>
|
|
</channel>
|
|
</rdf:RDF>';
|
|
}
|
|
|
|
function expected()
|
|
{
|
|
$this->expected = 'Feed Description';
|
|
}
|
|
}
|
|
|
|
?>
|