Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / first_item_longitude / SPtests / rss / 2.0 / georss / point.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_First_Item_Longitude_Test_RSS_20_Georss_Point extends SimplePie_First_Item_Longitude_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<rss version="2.0" xmlns:georss="http://www.georss.org/georss">
9
        <channel>
10
                <item>
11
                        <georss:point>55.701 12.552</georss:point>
12
                </item>
13
        </channel>
14
</rss>';
15
        }
16
        
17
        function expected()
18
        {
19
                $this->expected = 12.552;
20
        }
21
}
22

    
23
?>