diff options
Diffstat (limited to 'simplepie/test/first_item_permalink/SPtests/rss/0.92/link.php')
-rw-r--r-- | simplepie/test/first_item_permalink/SPtests/rss/0.92/link.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/simplepie/test/first_item_permalink/SPtests/rss/0.92/link.php b/simplepie/test/first_item_permalink/SPtests/rss/0.92/link.php new file mode 100644 index 000000000..b3ca8fd34 --- /dev/null +++ b/simplepie/test/first_item_permalink/SPtests/rss/0.92/link.php @@ -0,0 +1,23 @@ +<?php + +class SimplePie_First_Item_Permalink_Test_RSS_092_Link extends SimplePie_First_Item_Permalink_Test +{ + function data() + { + $this->data = +'<rss version="0.92"> + <channel> + <item> + <link>http://example.com/</link> + </item> + </channel> +</rss>'; + } + + function expected() + { + $this->expected = 'http://example.com/'; + } +} + +?>
\ No newline at end of file |