Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / feed_image_height / SPtests / rss / 0.91-userland / height.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_Feed_Image_Height_Test_RSS_091_Userland_Height extends SimplePie_Feed_Image_Height_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<rss version="0.91">
9
        <channel>
10
                <image>
11
                        <height>100</height>
12
                </image>
13
        </channel>
14
</rss>';
15
        }
16
        
17
        function expected()
18
        {
19
                $this->expected = 100.0;
20
        }
21
}
22

    
23
?>