friendica-github/simplepie/test/feed_image_title/SPtests/rss/0.90/title.php
2010-07-05 03:34:42 -07:00

21 lines
No EOL
385 B
PHP

<?php
class SimplePie_Feed_Image_Title_Test_RSS_090_Title extends SimplePie_Feed_Image_Title_Test
{
function data()
{
$this->data =
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/">
<image>
<title>Image Title</title>
</image>
</rdf:RDF>';
}
function expected()
{
$this->expected = 'Image Title';
}
}
?>