blob: 26d699b75d8616b7aa8b299ec3969b0ee1ebc87f (
plain) (
tree)
|
|
<?php
class RSS_Profile_Title_7 extends SimplePie_Feed_Title_Test
{
function data()
{
$this->data =
'<rss version="2.0">
<channel>
<title>Nice <gorilla> what\'s he weigh?</title>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Nice <gorilla> what\'s he weigh?';
}
}
?>
|