]> git.mxchange.org Git - friendica.git/blob - simplepie/test/feed_title/SPtests/rss/0.90/atom/1.0/title.php
6e6ce938763fbc330dedff29df548f2c98e12ae2
[friendica.git] / simplepie / test / feed_title / SPtests / rss / 0.90 / atom / 1.0 / title.php
1 <?php
2
3 class SimplePie_Feed_Title_Test_RSS_090_Atom_10_Title extends SimplePie_Feed_Title_Test
4 {
5         function data()
6         {
7                 $this->data = 
8 '<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:a="http://www.w3.org/2005/Atom">
9         <channel>
10                 <a:title>Feed Title</a:title>
11         </channel>
12 </rdf:RDF>';
13         }
14         
15         function expected()
16         {
17                 $this->expected = 'Feed Title';
18         }
19 }
20
21 ?>