blob: ab92612ae40e635804d1f03c487edf6ac7875849 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
class SimplePie_Feed_Title_Test_Bug_16_Test_0 extends SimplePie_Feed_Title_Test
{
function data()
{
$this->data =
'<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN"
"http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91">
<channel>
<title>Feed with DOCTYPE</title>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Feed with DOCTYPE';
}
}
?>
|