mirror of
https://github.com/friendica/friendica
synced 2025-02-14 04:14:06 +00:00
20 lines
299 B
PHP
20 lines
299 B
PHP
|
<?php
|
||
|
|
||
|
class SimplePie_Feed_Image_Height_Test_Atom_10_Logo_Default extends SimplePie_Feed_Image_Height_Test
|
||
|
{
|
||
|
function data()
|
||
|
{
|
||
|
$this->data =
|
||
|
'<feed xmlns="http://www.w3.org/2005/Atom">
|
||
|
<logo>http://example.com/</logo>
|
||
|
</feed>';
|
||
|
}
|
||
|
|
||
|
function expected()
|
||
|
{
|
||
|
$this->expected = NULL;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|