]> git.mxchange.org Git - friendica.git/blob - simplepie/test/itunes_rss/SPtests/rss/2.0/itunes_channel_block.php
Add simplepie
[friendica.git] / simplepie / test / itunes_rss / SPtests / rss / 2.0 / itunes_channel_block.php
1 <?php
2
3 class SimplePie_iTunesRSS_Channel_Block_Test_RSS_20 extends SimplePie_iTunesRSS_Channel_Block_Test
4 {
5         function data()
6         {
7                 $this->data = 
8 '<rss xmlns:itunes="http://www.itunes.com/DTDs/Podcast-1.0.dtd">
9         <channel>
10                 <itunes:block>yes</itunes:block>
11                 <item>
12                         <enclosure url="http://test.com/test.mp3" />
13                 </item>
14         </channel>
15 </rss>';
16         }
17         
18         function expected()
19         {
20                 $this->expected = 'deny';
21         }
22 }
23
24 ?>