aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/feed_title/rss-profile/7.php
blob: 26d699b75d8616b7aa8b299ec3969b0ee1ebc87f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

class RSS_Profile_Title_7 extends SimplePie_Feed_Title_Test
{
	function data()
	{
		$this->data = 
'<rss version="2.0">
	<channel>
		<title>Nice &#x3C;gorilla&#x3E; what\'s he weigh?</title>
	</channel>
</rss>';
	}
	
	function expected()
	{
		$this->expected = 'Nice &lt;gorilla&gt; what\'s he weigh?';
	}
}

?>