aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/first_item_title/SPtests/bugs/431.0.php
blob: 691b0e7da8aeee3eb9d87db395941336d59b9cce (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_431_Test_0 extends SimplePie_First_Item_Title_Test
{
	function data()
	{
		$this->data = 
'<rss version="2.0">
	<channel>
		<item>
			<title>Item title</title>
			<image>
				<title>Image title</title>
			</image>
		</item>
	</channel>
</rss>';
	}
	
	function expected()
	{
		$this->expected = 'Item title';
	}
}

?>