diff options
Diffstat (limited to 'simplepie/test/first_item_title/SPtests/bugs/475.1.php')
-rw-r--r-- | simplepie/test/first_item_title/SPtests/bugs/475.1.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/simplepie/test/first_item_title/SPtests/bugs/475.1.php b/simplepie/test/first_item_title/SPtests/bugs/475.1.php new file mode 100644 index 000000000..9bcfa3968 --- /dev/null +++ b/simplepie/test/first_item_title/SPtests/bugs/475.1.php @@ -0,0 +1,24 @@ +<?php + +class SimplePie_First_Item_Title_Test_Bug_475_Test_1 extends SimplePie_First_Item_Title_Test +{ + function data() + { + $this->data = +'<feed xmlns="http://www.w3.org/2005/Atom"> + <entry> + <title>Item Title</title> + <source> + <title>Source Title</title> + </source> + </entry> +</feed>'; + } + + function expected() + { + $this->expected = 'Item Title'; + } +} + +?>
\ No newline at end of file |