mirror of
https://github.com/friendica/friendica
synced 2025-02-10 16:14:01 +00:00
19 lines
299 B
PHP
19 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;
|
|
}
|
|
}
|
|
|
|
?>
|