Projet

Général

Profil

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

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

1
<?php
2

    
3
class SimplePie_Feed_Image_Width_Test_RSS_092_Atom_10_Logo extends SimplePie_Feed_Image_Width_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<rss version="0.92" xmlns:a="http://www.w3.org/2005/Atom">
9
        <channel>
10
                <a:logo>http://example.com/</a:logo>
11
        </channel>
12
</rss>';
13
        }
14
        
15
        function expected()
16
        {
17
                $this->expected = NULL;
18
        }
19
}
20

    
21
?>