friendica-github/simplepie/test/first_item_permalink/SPtests/atom/0.3/enclosure.php
2010-07-05 03:34:42 -07:00

21 lines
No EOL
367 B
PHP

<?php
class SimplePie_First_Item_Permalink_Test_Atom_03_Enclosure extends SimplePie_First_Item_Permalink_Test
{
function data()
{
$this->data =
'<feed version="0.3" xmlns="http://purl.org/atom/ns#">
<entry>
<link href="http://example.com/" rel="enclosure"/>
</entry>
</feed>';
}
function expected()
{
$this->expected = 'http://example.com/';
}
}
?>