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