blob: 525ca2052fc28fa1cbf0109c0ef0c73c6f2ac74b (
plain) (
tree)
|
|
<?php
class RSS_Profile_Title_6 extends SimplePie_Feed_Title_Test
{
function data()
{
$this->data =
'<rss version="2.0">
<channel>
<title>A<B</title>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'A<B';
}
}
?>
|