aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/first_item_author_name/SPtests/atom/0.3/feed.php
diff options
context:
space:
mode:
Diffstat (limited to 'simplepie/test/first_item_author_name/SPtests/atom/0.3/feed.php')
-rw-r--r--simplepie/test/first_item_author_name/SPtests/atom/0.3/feed.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/simplepie/test/first_item_author_name/SPtests/atom/0.3/feed.php b/simplepie/test/first_item_author_name/SPtests/atom/0.3/feed.php
new file mode 100644
index 000000000..9227ed53a
--- /dev/null
+++ b/simplepie/test/first_item_author_name/SPtests/atom/0.3/feed.php
@@ -0,0 +1,24 @@
+<?php
+
+class SimplePie_First_Item_Author_Name_Atom_03_Inheritance_Feed_Name extends SimplePie_First_Item_Author_Name_Test
+{
+ function data()
+ {
+ $this->data =
+'<feed version="0.3" xmlns="http://purl.org/atom/ns#">
+ <author>
+ <name>Item Author</name>
+ </author>
+ <entry>
+ <title>Item Title</title>
+ </entry>
+</feed>';
+ }
+
+ function expected()
+ {
+ $this->expected = 'Item Author';
+ }
+}
+
+?> \ No newline at end of file