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