friendica_2021-01/simplepie/test/first_item_permalink/SPtests/bugs/10.3.php

23 lines
337 B
PHP
Raw Normal View History

2010-07-05 12:34:42 +02:00
<?php
class SimplePie_First_Item_Permalink_Test_Bug_10_Test_3 extends SimplePie_First_Item_Permalink_Test
{
function data()
{
$this->data =
'<rss version="2.0">
<channel>
<item>
<guid isPermaLink="false">http://example.com/</guid>
</item>
</channel>
</rss>';
}
function expected()
{
$this->expected = NULL;
}
}
?>