]> git.mxchange.org Git - friendica.git/blob - simplepie/test/feed_description/SPtests/rss/1.0/atom/0.3/tagline.php
Add simplepie
[friendica.git] / simplepie / test / feed_description / SPtests / rss / 1.0 / atom / 0.3 / tagline.php
1 <?php
2
3 class SimplePie_Feed_Description_Test_RSS_10_Atom_03_Tagline extends SimplePie_Feed_Description_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://purl.org/rss/1.0/" xmlns:a="http://purl.org/atom/ns#">
9         <channel>
10                 <a:tagline>Feed Description</a:tagline>
11         </channel>
12 </rdf:RDF>';
13         }
14         
15         function expected()
16         {
17                 $this->expected = 'Feed Description';
18         }
19 }
20
21 ?>