aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/feed_category_label/SPtests/atom
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-07-05 03:34:42 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-07-05 03:34:42 -0700
commit9f7ae0e95f89b964a098eaacdfd89ff25e05c615 (patch)
tree0bfe8d04f4b11abdbea41fe9bf6e165eec8ebc4b /simplepie/test/feed_category_label/SPtests/atom
parentf5826105bfc514599b2c5b6692bca14ca4bc5d78 (diff)
downloadvolse-hubzilla-9f7ae0e95f89b964a098eaacdfd89ff25e05c615.tar.gz
volse-hubzilla-9f7ae0e95f89b964a098eaacdfd89ff25e05c615.tar.bz2
volse-hubzilla-9f7ae0e95f89b964a098eaacdfd89ff25e05c615.zip
Add simplepie
Diffstat (limited to 'simplepie/test/feed_category_label/SPtests/atom')
-rw-r--r--simplepie/test/feed_category_label/SPtests/atom/0.3/dc/1.0/subject.php19
-rw-r--r--simplepie/test/feed_category_label/SPtests/atom/0.3/dc/1.1/subject.php19
-rw-r--r--simplepie/test/feed_category_label/SPtests/atom/1.0/dc/1.0/subject.php19
-rw-r--r--simplepie/test/feed_category_label/SPtests/atom/1.0/dc/1.1/subject.php19
-rw-r--r--simplepie/test/feed_category_label/SPtests/atom/1.0/label.php19
-rw-r--r--simplepie/test/feed_category_label/SPtests/atom/1.0/term.php19
6 files changed, 114 insertions, 0 deletions
diff --git a/simplepie/test/feed_category_label/SPtests/atom/0.3/dc/1.0/subject.php b/simplepie/test/feed_category_label/SPtests/atom/0.3/dc/1.0/subject.php
new file mode 100644
index 000000000..735222265
--- /dev/null
+++ b/simplepie/test/feed_category_label/SPtests/atom/0.3/dc/1.0/subject.php
@@ -0,0 +1,19 @@
+<?php
+
+class SimplePie_Feed_Category_Label_Test_Atom_03_DC_10_Subject extends SimplePie_Feed_Category_Label_Test
+{
+ function data()
+ {
+ $this->data =
+'<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.0/">
+ <dc:subject>Feed Category</dc:subject>
+</feed>';
+ }
+
+ function expected()
+ {
+ $this->expected = 'Feed Category';
+ }
+}
+
+?> \ No newline at end of file
diff --git a/simplepie/test/feed_category_label/SPtests/atom/0.3/dc/1.1/subject.php b/simplepie/test/feed_category_label/SPtests/atom/0.3/dc/1.1/subject.php
new file mode 100644
index 000000000..81c0fc3d5
--- /dev/null
+++ b/simplepie/test/feed_category_label/SPtests/atom/0.3/dc/1.1/subject.php
@@ -0,0 +1,19 @@
+<?php
+
+class SimplePie_Feed_Category_Label_Test_Atom_03_DC_11_Subject extends SimplePie_Feed_Category_Label_Test
+{
+ function data()
+ {
+ $this->data =
+'<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <dc:subject>Feed Category</dc:subject>
+</feed>';
+ }
+
+ function expected()
+ {
+ $this->expected = 'Feed Category';
+ }
+}
+
+?> \ No newline at end of file
diff --git a/simplepie/test/feed_category_label/SPtests/atom/1.0/dc/1.0/subject.php b/simplepie/test/feed_category_label/SPtests/atom/1.0/dc/1.0/subject.php
new file mode 100644
index 000000000..ffe2eb68d
--- /dev/null
+++ b/simplepie/test/feed_category_label/SPtests/atom/1.0/dc/1.0/subject.php
@@ -0,0 +1,19 @@
+<?php
+
+class SimplePie_Feed_Category_Label_Test_Atom_10_DC_10_Subject extends SimplePie_Feed_Category_Label_Test
+{
+ function data()
+ {
+ $this->data =
+'<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.0/">
+ <dc:subject>Feed Category</dc:subject>
+</feed>';
+ }
+
+ function expected()
+ {
+ $this->expected = 'Feed Category';
+ }
+}
+
+?> \ No newline at end of file
diff --git a/simplepie/test/feed_category_label/SPtests/atom/1.0/dc/1.1/subject.php b/simplepie/test/feed_category_label/SPtests/atom/1.0/dc/1.1/subject.php
new file mode 100644
index 000000000..89fd41849
--- /dev/null
+++ b/simplepie/test/feed_category_label/SPtests/atom/1.0/dc/1.1/subject.php
@@ -0,0 +1,19 @@
+<?php
+
+class SimplePie_Feed_Category_Label_Test_Atom_10_DC_11_Subject extends SimplePie_Feed_Category_Label_Test
+{
+ function data()
+ {
+ $this->data =
+'<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <dc:subject>Feed Category</dc:subject>
+</feed>';
+ }
+
+ function expected()
+ {
+ $this->expected = 'Feed Category';
+ }
+}
+
+?> \ No newline at end of file
diff --git a/simplepie/test/feed_category_label/SPtests/atom/1.0/label.php b/simplepie/test/feed_category_label/SPtests/atom/1.0/label.php
new file mode 100644
index 000000000..eacf3706f
--- /dev/null
+++ b/simplepie/test/feed_category_label/SPtests/atom/1.0/label.php
@@ -0,0 +1,19 @@
+<?php
+
+class SimplePie_Feed_Category_Label_Test_Atom_10_Category_Label extends SimplePie_Feed_Category_Label_Test
+{
+ function data()
+ {
+ $this->data =
+'<feed xmlns="http://www.w3.org/2005/Atom">
+ <category label="Feed Category"/>
+</feed>';
+ }
+
+ function expected()
+ {
+ $this->expected = 'Feed Category';
+ }
+}
+
+?> \ No newline at end of file
diff --git a/simplepie/test/feed_category_label/SPtests/atom/1.0/term.php b/simplepie/test/feed_category_label/SPtests/atom/1.0/term.php
new file mode 100644
index 000000000..d387f69d4
--- /dev/null
+++ b/simplepie/test/feed_category_label/SPtests/atom/1.0/term.php
@@ -0,0 +1,19 @@
+<?php
+
+class SimplePie_Feed_Category_Label_Test_Atom_10_Category_Term extends SimplePie_Feed_Category_Label_Test
+{
+ function data()
+ {
+ $this->data =
+'<feed xmlns="http://www.w3.org/2005/Atom">
+ <category term="Feed Category"/>
+</feed>';
+ }
+
+ function expected()
+ {
+ $this->expected = 'Feed Category';
+ }
+}
+
+?> \ No newline at end of file