aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/first_item_author_name/SPtests/rss/0.92/dc/1.1/creator.php
diff options
context:
space:
mode:
Diffstat (limited to 'simplepie/test/first_item_author_name/SPtests/rss/0.92/dc/1.1/creator.php')
-rw-r--r--simplepie/test/first_item_author_name/SPtests/rss/0.92/dc/1.1/creator.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/simplepie/test/first_item_author_name/SPtests/rss/0.92/dc/1.1/creator.php b/simplepie/test/first_item_author_name/SPtests/rss/0.92/dc/1.1/creator.php
new file mode 100644
index 000000000..1cdfdfd9b
--- /dev/null
+++ b/simplepie/test/first_item_author_name/SPtests/rss/0.92/dc/1.1/creator.php
@@ -0,0 +1,23 @@
+<?php
+
+class SimplePie_First_Item_Author_Name_Test_RSS_092_DC_11_Creator extends SimplePie_First_Item_Author_Name_Test
+{
+ function data()
+ {
+ $this->data =
+'<rss version="0.92" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <channel>
+ <item>
+ <dc:creator>Item Author</dc:creator>
+ </item>
+ </channel>
+</rss>';
+ }
+
+ function expected()
+ {
+ $this->expected = 'Item Author';
+ }
+}
+
+?> \ No newline at end of file