aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/itunes_rss/SPtests/rss/2.0/itunes_channel_block_default.php
blob: 0d840202b554501bd047e5fc80c28292f311e2fb (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
<?php

class SimplePie_iTunesRSS_Channel_Block_Default_Test_RSS_20 extends SimplePie_iTunesRSS_Channel_Block_Test
{
	function data()
	{
		$this->data = 
'<rss xmlns:itunes="http://www.itunes.com/DTDs/Podcast-1.0.dtd">
	<channel>
		<item>
			<enclosure url="http://test.com/test.mp3" />
		</item>
	</channel>
</rss>';
	}
	
	function expected()
	{
		$this->expected = 'allow';
	}
}

?>