21 lines
335 B
PHP
21 lines
335 B
PHP
<?php
|
|
|
|
class SimplePie_First_Item_Permalink_Test_Atom_10_Link extends SimplePie_First_Item_Permalink_Test
|
|
{
|
|
function data()
|
|
{
|
|
$this->data =
|
|
'<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<entry>
|
|
<link href="http://example.com/"/>
|
|
</entry>
|
|
</feed>';
|
|
}
|
|
|
|
function expected()
|
|
{
|
|
$this->expected = 'http://example.com/';
|
|
}
|
|
}
|
|
|
|
?>
|