23 lines
No EOL
336 B
PHP
23 lines
No EOL
336 B
PHP
<?php
|
|
|
|
class SimplePie_First_Item_Permalink_Test_Bug_10_Test_2 extends SimplePie_First_Item_Permalink_Test
|
|
{
|
|
function data()
|
|
{
|
|
$this->data =
|
|
'<rss version="2.0">
|
|
<channel>
|
|
<item>
|
|
<guid isPermaLink="meep">http://example.com/</guid>
|
|
</item>
|
|
</channel>
|
|
</rss>';
|
|
}
|
|
|
|
function expected()
|
|
{
|
|
$this->expected = NULL;
|
|
}
|
|
}
|
|
|
|
?>
|