blob: 2b150591e5053d14e39e49a52d5338277b14f1d5 (
plain) (
tree)
|
|
<?php
class RSS_Profile_Title_3 extends SimplePie_Feed_Title_Test
{
function data()
{
$this->data =
'<rss version="2.0">
<channel>
<title>The &amp; entity</title>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'The &amp; entity';
}
}
?>
|