friendica_2021-01/simplepie/test/first_item_category_label/SPtests/rss/0.92/category.php

23 lines
344 B
PHP
Raw Normal View History

2010-07-05 12:34:42 +02:00
<?php
class SimplePie_First_Item_Category_Label_Test_RSS_092_Category extends SimplePie_First_Item_Category_Label_Test
{
function data()
{
$this->data =
'<rss version="0.92">
<channel>
<item>
<category>Item Category</category>
</item>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Item Category';
}
}
?>