]> git.mxchange.org Git - friendica.git/blob - simplepie/test/feed_title/SPtests/bugs/16.0.php
Add simplepie
[friendica.git] / simplepie / test / feed_title / SPtests / bugs / 16.0.php
1 <?php
2
3 class SimplePie_Feed_Title_Test_Bug_16_Test_0 extends SimplePie_Feed_Title_Test
4 {
5         function data()
6         {
7                 $this->data = 
8 '<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN" 
9 "http://my.netscape.com/publish/formats/rss-0.91.dtd">
10 <rss version="0.91">
11         <channel>
12                 <title>Feed with DOCTYPE</title>
13         </channel>
14 </rss>';
15         }
16         
17         function expected()
18         {
19                 $this->expected = 'Feed with DOCTYPE';
20         }
21 }
22
23 ?>