Projet

Général

Profil

Paste
Télécharger (409 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / itunes_rss / SPtests / rss / 2.0 / itunes_channel_block.php @ 41cc1b08

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
?>