openstackweb/simplepie/test/feed_image_height/SPtests/rss/0.91-userland/height.php
2014-10-31 16:21:41 -03:00

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;
}
}
?>