mirror of
https://github.com/friendica/friendica
synced 2025-02-03 07:38:51 +00:00
21 lines
No EOL
385 B
PHP
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';
|
|
}
|
|
}
|
|
|
|
?>
|