23 lines
313 B
PHP
23 lines
313 B
PHP
<?php
|
|
|
|
class SimplePie_Feed_Image_Height_Test_RSS_091_Userland_Height extends SimplePie_Feed_Image_Height_Test
|
|
{
|
|
function data()
|
|
{
|
|
$this->data =
|
|
'<rss version="0.91">
|
|
<channel>
|
|
<image>
|
|
<height>100</height>
|
|
</image>
|
|
</channel>
|
|
</rss>';
|
|
}
|
|
|
|
function expected()
|
|
{
|
|
$this->expected = 100.0;
|
|
}
|
|
}
|
|
|
|
?>
|