mirror of
https://github.com/friendica/friendica
synced 2025-02-13 16:14:01 +00:00
21 lines
340 B
PHP
21 lines
340 B
PHP
|
<?php
|
||
|
|
||
|
class SimplePie_First_Item_Description_Test_Atom_10_Content extends SimplePie_First_Item_Description_Test
|
||
|
{
|
||
|
function data()
|
||
|
{
|
||
|
$this->data =
|
||
|
'<feed xmlns="http://www.w3.org/2005/Atom">
|
||
|
<entry>
|
||
|
<content>Item Description</content>
|
||
|
</entry>
|
||
|
</feed>';
|
||
|
}
|
||
|
|
||
|
function expected()
|
||
|
{
|
||
|
$this->expected = 'Item Description';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|