]> git.mxchange.org Git - friendica.git/blob - simplepie/test/feed_title/rss-profile/7.php
Add simplepie
[friendica.git] / simplepie / test / feed_title / rss-profile / 7.php
1 <?php
2
3 class RSS_Profile_Title_7 extends SimplePie_Feed_Title_Test
4 {
5         function data()
6         {
7                 $this->data = 
8 '<rss version="2.0">
9         <channel>
10                 <title>Nice &#x3C;gorilla&#x3E; what\'s he weigh?</title>
11         </channel>
12 </rss>';
13         }
14         
15         function expected()
16         {
17                 $this->expected = 'Nice &lt;gorilla&gt; what\'s he weigh?';
18         }
19 }
20
21 ?>