]> git.mxchange.org Git - friendica.git/blob - simplepie/test/first_item_longitude/SPtests/rss/0.91-netscape/geo/long.php
Add simplepie
[friendica.git] / simplepie / test / first_item_longitude / SPtests / rss / 0.91-netscape / geo / long.php
1 <?php
2
3 class SimplePie_First_Item_Longitude_Test_RSS_091_Netscape_Geo_Long extends SimplePie_First_Item_Longitude_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:geo="http://www.w3.org/2003/01/geo/wgs84_pos#">
10         <channel>
11                 <item>
12                         <geo:lat>55.701</geo:lat>
13                         <geo:long>12.552</geo:long>
14                 </item>
15         </channel>
16 </rss>';
17         }
18         
19         function expected()
20         {
21                 $this->expected = 12.552;
22         }
23 }
24
25 ?>