aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/feed_title/rss-profile
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-07-05 03:36:10 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-07-05 03:36:10 -0700
commit3713a9291cfb5d9fad160abd8f4a167693171998 (patch)
tree3c17af9f4d13ae97209db48cd4ab614a500b6605 /simplepie/test/feed_title/rss-profile
parent9f7ae0e95f89b964a098eaacdfd89ff25e05c615 (diff)
downloadvolse-hubzilla-3713a9291cfb5d9fad160abd8f4a167693171998.tar.gz
volse-hubzilla-3713a9291cfb5d9fad160abd8f4a167693171998.tar.bz2
volse-hubzilla-3713a9291cfb5d9fad160abd8f4a167693171998.zip
no need for simplepie test suite
Diffstat (limited to 'simplepie/test/feed_title/rss-profile')
-rw-r--r--simplepie/test/feed_title/rss-profile/1.php21
-rw-r--r--simplepie/test/feed_title/rss-profile/2.php21
-rw-r--r--simplepie/test/feed_title/rss-profile/3.php21
-rw-r--r--simplepie/test/feed_title/rss-profile/4.php21
-rw-r--r--simplepie/test/feed_title/rss-profile/5.php21
-rw-r--r--simplepie/test/feed_title/rss-profile/6.php21
-rw-r--r--simplepie/test/feed_title/rss-profile/7.php21
7 files changed, 0 insertions, 147 deletions
diff --git a/simplepie/test/feed_title/rss-profile/1.php b/simplepie/test/feed_title/rss-profile/1.php
deleted file mode 100644
index a9580571c..000000000
--- a/simplepie/test/feed_title/rss-profile/1.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-class RSS_Profile_Title_1 extends SimplePie_Feed_Title_Test
-{
- function data()
- {
- $this->data =
-'<rss version="2.0">
- <channel>
- <title>AT&#x26;T</title>
- </channel>
-</rss>';
- }
-
- function expected()
- {
- $this->expected = 'AT&amp;T';
- }
-}
-
-?> \ No newline at end of file
diff --git a/simplepie/test/feed_title/rss-profile/2.php b/simplepie/test/feed_title/rss-profile/2.php
deleted file mode 100644
index e7635c9af..000000000
--- a/simplepie/test/feed_title/rss-profile/2.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-class RSS_Profile_Title_2 extends SimplePie_Feed_Title_Test
-{
- function data()
- {
- $this->data =
-'<rss version="2.0">
- <channel>
- <title>Bill &#x26; Ted\'s Excellent Adventure</title>
- </channel>
-</rss>';
- }
-
- function expected()
- {
- $this->expected = 'Bill &amp; Ted\'s Excellent Adventure';
- }
-}
-
-?> \ No newline at end of file
diff --git a/simplepie/test/feed_title/rss-profile/3.php b/simplepie/test/feed_title/rss-profile/3.php
deleted file mode 100644
index 2b150591e..000000000
--- a/simplepie/test/feed_title/rss-profile/3.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-class RSS_Profile_Title_3 extends SimplePie_Feed_Title_Test
-{
- function data()
- {
- $this->data =
-'<rss version="2.0">
- <channel>
- <title>The &#x26;amp; entity</title>
- </channel>
-</rss>';
- }
-
- function expected()
- {
- $this->expected = 'The &amp;amp; entity';
- }
-}
-
-?> \ No newline at end of file
diff --git a/simplepie/test/feed_title/rss-profile/4.php b/simplepie/test/feed_title/rss-profile/4.php
deleted file mode 100644
index d46435ada..000000000
--- a/simplepie/test/feed_title/rss-profile/4.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-class RSS_Profile_Title_4 extends SimplePie_Feed_Title_Test
-{
- function data()
- {
- $this->data =
-'<rss version="2.0">
- <channel>
- <title>I &#x3C;3 Phil Ringnalda</title>
- </channel>
-</rss>';
- }
-
- function expected()
- {
- $this->expected = 'I &lt;3 Phil Ringnalda';
- }
-}
-
-?> \ No newline at end of file
diff --git a/simplepie/test/feed_title/rss-profile/5.php b/simplepie/test/feed_title/rss-profile/5.php
deleted file mode 100644
index ca4d28cc7..000000000
--- a/simplepie/test/feed_title/rss-profile/5.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-class RSS_Profile_Title_5 extends SimplePie_Feed_Title_Test
-{
- function data()
- {
- $this->data =
-'<rss version="2.0">
- <channel>
- <title>A &#x3C; B</title>
- </channel>
-</rss>';
- }
-
- function expected()
- {
- $this->expected = 'A &lt; B';
- }
-}
-
-?> \ No newline at end of file
diff --git a/simplepie/test/feed_title/rss-profile/6.php b/simplepie/test/feed_title/rss-profile/6.php
deleted file mode 100644
index 525ca2052..000000000
--- a/simplepie/test/feed_title/rss-profile/6.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-class RSS_Profile_Title_6 extends SimplePie_Feed_Title_Test
-{
- function data()
- {
- $this->data =
-'<rss version="2.0">
- <channel>
- <title>A&#x3C;B</title>
- </channel>
-</rss>';
- }
-
- function expected()
- {
- $this->expected = 'A&lt;B';
- }
-}
-
-?> \ No newline at end of file
diff --git a/simplepie/test/feed_title/rss-profile/7.php b/simplepie/test/feed_title/rss-profile/7.php
deleted file mode 100644
index 26d699b75..000000000
--- a/simplepie/test/feed_title/rss-profile/7.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-class RSS_Profile_Title_7 extends SimplePie_Feed_Title_Test
-{
- function data()
- {
- $this->data =
-'<rss version="2.0">
- <channel>
- <title>Nice &#x3C;gorilla&#x3E; what\'s he weigh?</title>
- </channel>
-</rss>';
- }
-
- function expected()
- {
- $this->expected = 'Nice &lt;gorilla&gt; what\'s he weigh?';
- }
-}
-
-?> \ No newline at end of file