aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/first_item_content/SPtests/atom/1.0
diff options
context:
space:
mode:
Diffstat (limited to 'simplepie/test/first_item_content/SPtests/atom/1.0')
-rw-r--r--simplepie/test/first_item_content/SPtests/atom/1.0/content.php21
-rw-r--r--simplepie/test/first_item_content/SPtests/atom/1.0/dc/1.0/description.php21
-rw-r--r--simplepie/test/first_item_content/SPtests/atom/1.0/dc/1.1/description.php21
-rw-r--r--simplepie/test/first_item_content/SPtests/atom/1.0/summary.php21
4 files changed, 84 insertions, 0 deletions
diff --git a/simplepie/test/first_item_content/SPtests/atom/1.0/content.php b/simplepie/test/first_item_content/SPtests/atom/1.0/content.php
new file mode 100644
index 000000000..a35d9bac8
--- /dev/null
+++ b/simplepie/test/first_item_content/SPtests/atom/1.0/content.php
@@ -0,0 +1,21 @@
+<?php
+
+class SimplePie_First_Item_Content_Test_Atom_10_Content extends SimplePie_First_Item_Content_Test
+{
+ function data()
+ {
+ $this->data =
+'<feed xmlns="http://www.w3.org/2005/Atom">
+ <entry>
+ <content>Item Description</content>
+ </entry>
+</feed>';
+ }
+
+ function expected()
+ {
+ $this->expected = 'Item Description';
+ }
+}
+
+?> \ No newline at end of file
diff --git a/simplepie/test/first_item_content/SPtests/atom/1.0/dc/1.0/description.php b/simplepie/test/first_item_content/SPtests/atom/1.0/dc/1.0/description.php
new file mode 100644
index 000000000..37ec188f2
--- /dev/null
+++ b/simplepie/test/first_item_content/SPtests/atom/1.0/dc/1.0/description.php
@@ -0,0 +1,21 @@
+<?php
+
+class SimplePie_First_Item_Content_Test_Atom_10_DC_10_Description extends SimplePie_First_Item_Content_Test
+{
+ function data()
+ {
+ $this->data =
+'<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.0/">
+ <entry>
+ <dc:description>Item Description</dc:description>
+ </entry>
+</feed>';
+ }
+
+ function expected()
+ {
+ $this->expected = 'Item Description';
+ }
+}
+
+?> \ No newline at end of file
diff --git a/simplepie/test/first_item_content/SPtests/atom/1.0/dc/1.1/description.php b/simplepie/test/first_item_content/SPtests/atom/1.0/dc/1.1/description.php
new file mode 100644
index 000000000..dca7893cf
--- /dev/null
+++ b/simplepie/test/first_item_content/SPtests/atom/1.0/dc/1.1/description.php
@@ -0,0 +1,21 @@
+<?php
+
+class SimplePie_First_Item_Content_Test_Atom_10_DC_11_Description extends SimplePie_First_Item_Content_Test
+{
+ function data()
+ {
+ $this->data =
+'<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <entry>
+ <dc:description>Item Description</dc:description>
+ </entry>
+</feed>';
+ }
+
+ function expected()
+ {
+ $this->expected = 'Item Description';
+ }
+}
+
+?> \ No newline at end of file
diff --git a/simplepie/test/first_item_content/SPtests/atom/1.0/summary.php b/simplepie/test/first_item_content/SPtests/atom/1.0/summary.php
new file mode 100644
index 000000000..42028baac
--- /dev/null
+++ b/simplepie/test/first_item_content/SPtests/atom/1.0/summary.php
@@ -0,0 +1,21 @@
+<?php
+
+class SimplePie_First_Item_Content_Test_Atom_10_Summary extends SimplePie_First_Item_Content_Test
+{
+ function data()
+ {
+ $this->data =
+'<feed xmlns="http://www.w3.org/2005/Atom">
+ <entry>
+ <summary>Item Description</summary>
+ </entry>
+</feed>';
+ }
+
+ function expected()
+ {
+ $this->expected = 'Item Description';
+ }
+}
+
+?> \ No newline at end of file