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

class SimplePie_iTunesRSS_Channel_Block_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>
		<itunes:block>yes</itunes:block>
		<item>
			<enclosure url="http://test.com/test.mp3" />
		</item>
	</channel>
</rss>';
	}
	
	function expected()
	{
		$this->expected = 'deny';
	}
}

?>