]> git.mxchange.org Git - friendica.git/blob - simplepie/test/first_item_title/SPtests/entities/rss/0.92/1.php
Add simplepie
[friendica.git] / simplepie / test / first_item_title / SPtests / entities / rss / 0.92 / 1.php
1 <?php
2
3 class SimplePie_First_Item_Title_Test_RSS_092_Title_1 extends SimplePie_First_Item_Title_Test
4 {
5         function data()
6         {
7                 $this->data = 
8 '<rss version="0.92">
9         <channel>
10                 <item>
11                         <title>This &amp;amp; this</title>
12                 </item>
13         </channel>
14 </rss>';
15         }
16         
17         function expected()
18         {
19                 $this->expected = 'This &amp;amp; this';
20         }
21 }
22
23 ?>