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