2014-10-31 16:21:41 -03:00

21 lines
343 B
PHP

<?php
class SimplePie_First_Item_Content_Test_Atom_03_Summary extends SimplePie_First_Item_Content_Test
{
function data()
{
$this->data =
'<feed version="0.3" xmlns="http://purl.org/atom/ns#">
<entry>
<summary>Item Description</summary>
</entry>
</feed>';
}
function expected()
{
$this->expected = 'Item Description';
}
}
?>