aboutsummaryrefslogblamecommitdiffstats
path: root/simplepie/test/first_item_content/SPtests/atom/0.3/content.php
blob: 7c7efb32d6e0d851996375915e4182d0e19aefda (plain) (tree)




















                                                                                                 
<?php

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

?>