aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/first_item_title/SPtests/bugs/629.1.php
blob: 6966e9fb66827a2f4bb6a96ec1b2f40082e66b3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php

class SimplePie_First_Item_Title_Test_Bug_629_Test_1 extends SimplePie_First_Item_Title_Test
{
	function data()
	{
		$this->data = 
'<feed xmlns="http://www.w3.org/2005/Atom">
	<entry>
		<title>Item title</title>
	</entry>
	<x:foo xmlns:x="urn:foo">
		<entry>
			<title>Extension title</title>
		</entry>
	</x:foo>
</feed>';
	}
	
	function expected()
	{
		$this->expected = 'Item title';
	}
}

?>