aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/feed_category_label/SPtests/rss/2.0/category.php
blob: 5bd28af3abef6bb19af6f0f06128dfacbc6e72c4 (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 SimplePie_Feed_Category_Label_Test_RSS_20_Category extends SimplePie_Feed_Category_Label_Test
{
	function data()
	{
		$this->data = 
'<rss version="2.0">
	<channel>
		<category>Feed Category</category>
	</channel>
</rss>';
	}
	
	function expected()
	{
		$this->expected = 'Feed Category';
	}
}

?>