23 lines
304 B
PHP
23 lines
304 B
PHP
<?php
|
|
|
|
class SimplePie_Feed_Image_Width_Test_RSS_092 extends SimplePie_Feed_Image_Width_Test
|
|
{
|
|
function data()
|
|
{
|
|
$this->data =
|
|
'<rss version="0.92">
|
|
<channel>
|
|
<image>
|
|
<url>http://example.com/</url>
|
|
</image>
|
|
</channel>
|
|
</rss>';
|
|
}
|
|
|
|
function expected()
|
|
{
|
|
$this->expected = 88.0;
|
|
}
|
|
}
|
|
|
|
?>
|