Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / feed_image_width / SPtests / rss / 0.91-netscape / atom / 1.0 / icon-default.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_Feed_Image_Width_Test_RSS_091_Netscape_Atom_10_Icon extends SimplePie_Feed_Image_Width_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
9
<rss version="0.91" xmlns:a="http://www.w3.org/2005/Atom">
10
        <channel>
11
                <a:icon>http://example.com/</a:icon>
12
        </channel>
13
</rss>';
14
        }
15
        
16
        function expected()
17
        {
18
                $this->expected = NULL;
19
        }
20
}
21

    
22
?>