diff options
Diffstat (limited to 'simplepie/test/feed_description/SPtests')
36 files changed, 0 insertions, 749 deletions
diff --git a/simplepie/test/feed_description/SPtests/atom/0.3/dc/1.0/description.php b/simplepie/test/feed_description/SPtests/atom/0.3/dc/1.0/description.php deleted file mode 100644 index c6fc4cd31..000000000 --- a/simplepie/test/feed_description/SPtests/atom/0.3/dc/1.0/description.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_Atom_03_DC_10_Description extends SimplePie_Feed_Description_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:description>Feed Description</dc:description> -</feed>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/atom/0.3/dc/1.1/description.php b/simplepie/test/feed_description/SPtests/atom/0.3/dc/1.1/description.php deleted file mode 100644 index 3b466a4ff..000000000 --- a/simplepie/test/feed_description/SPtests/atom/0.3/dc/1.1/description.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_Atom_03_DC_11_Description extends SimplePie_Feed_Description_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:description>Feed Description</dc:description> -</feed>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/atom/0.3/tagline.php b/simplepie/test/feed_description/SPtests/atom/0.3/tagline.php deleted file mode 100644 index 41ddd356b..000000000 --- a/simplepie/test/feed_description/SPtests/atom/0.3/tagline.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_Atom_03_Tagline extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<feed version="0.3" xmlns="http://purl.org/atom/ns#"> - <tagline>Feed Description</tagline> -</feed>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/atom/1.0/dc/1.0/description.php b/simplepie/test/feed_description/SPtests/atom/1.0/dc/1.0/description.php deleted file mode 100644 index ebd9f0e42..000000000 --- a/simplepie/test/feed_description/SPtests/atom/1.0/dc/1.0/description.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_Atom_10_DC_10_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.0/"> - <dc:description>Feed Description</dc:description> -</feed>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/atom/1.0/dc/1.1/description.php b/simplepie/test/feed_description/SPtests/atom/1.0/dc/1.1/description.php deleted file mode 100644 index 31e4d277b..000000000 --- a/simplepie/test/feed_description/SPtests/atom/1.0/dc/1.1/description.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_Atom_10_DC_11_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <dc:description>Feed Description</dc:description> -</feed>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/atom/1.0/subtitle.php b/simplepie/test/feed_description/SPtests/atom/1.0/subtitle.php deleted file mode 100644 index da830bf80..000000000 --- a/simplepie/test/feed_description/SPtests/atom/1.0/subtitle.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_Atom_10_Subtitle extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<feed xmlns="http://www.w3.org/2005/Atom"> - <subtitle>Feed Description</subtitle> -</feed>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.90/atom/0.3/tagline.php b/simplepie/test/feed_description/SPtests/rss/0.90/atom/0.3/tagline.php deleted file mode 100644 index e6cb8aba3..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.90/atom/0.3/tagline.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_090_Atom_03_Tagline extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:a="http://purl.org/atom/ns#"> - <channel> - <a:tagline>Feed Description</a:tagline> - </channel> -</rdf:RDF>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.90/atom/1.0/subtitle.php b/simplepie/test/feed_description/SPtests/rss/0.90/atom/1.0/subtitle.php deleted file mode 100644 index 3824094e5..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.90/atom/1.0/subtitle.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_090_Atom_10_Subtitle extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:a="http://www.w3.org/2005/Atom"> - <channel> - <a:subtitle>Feed Description</a:subtitle> - </channel> -</rdf:RDF>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.90/dc/1.0/description.php b/simplepie/test/feed_description/SPtests/rss/0.90/dc/1.0/description.php deleted file mode 100644 index 12170525c..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.90/dc/1.0/description.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_090_DC_10_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:dc="http://purl.org/dc/elements/1.0/"> - <channel> - <dc:description>Feed Description</dc:description> - </channel> -</rdf:RDF>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.90/dc/1.1/description.php b/simplepie/test/feed_description/SPtests/rss/0.90/dc/1.1/description.php deleted file mode 100644 index 3db65728c..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.90/dc/1.1/description.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_090_DC_11_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <channel> - <dc:description>Feed Description</dc:description> - </channel> -</rdf:RDF>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.90/description.php b/simplepie/test/feed_description/SPtests/rss/0.90/description.php deleted file mode 100644 index 52d7cf0c3..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.90/description.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_090_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/"> - <channel> - <description>Feed Description</description> - </channel> -</rdf:RDF>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.91-netscape/atom/0.3/tagline.php b/simplepie/test/feed_description/SPtests/rss/0.91-netscape/atom/0.3/tagline.php deleted file mode 100644 index d8eedbc3d..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.91-netscape/atom/0.3/tagline.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_091_Netscape_Atom_03_Tagline extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd"> -<rss version="0.91" xmlns:a="http://purl.org/atom/ns#"> - <channel> - <a:tagline>Feed Description</a:tagline> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.91-netscape/atom/1.0/subtitle.php b/simplepie/test/feed_description/SPtests/rss/0.91-netscape/atom/1.0/subtitle.php deleted file mode 100644 index 9339d490e..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.91-netscape/atom/1.0/subtitle.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_091_Netscape_Atom_10_Subtitle extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd"> -<rss version="0.91" xmlns:a="http://www.w3.org/2005/Atom"> - <channel> - <a:subtitle>Feed Description</a:subtitle> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.91-netscape/dc/1.0/description.php b/simplepie/test/feed_description/SPtests/rss/0.91-netscape/dc/1.0/description.php deleted file mode 100644 index ba0cca251..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.91-netscape/dc/1.0/description.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_091_Netscape_DC_10_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd"> -<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.0/"> - <channel> - <dc:description>Feed Description</dc:description> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.91-netscape/dc/1.1/description.php b/simplepie/test/feed_description/SPtests/rss/0.91-netscape/dc/1.1/description.php deleted file mode 100644 index 10592c12f..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.91-netscape/dc/1.1/description.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_091_Netscape_DC_11_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd"> -<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <channel> - <dc:description>Feed Description</dc:description> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.91-netscape/description.php b/simplepie/test/feed_description/SPtests/rss/0.91-netscape/description.php deleted file mode 100644 index 291854d27..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.91-netscape/description.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_091_Netscape_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd"> -<rss version="0.91"> - <channel> - <description>Feed Description</description> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.91-userland/atom/0.3/tagline.php b/simplepie/test/feed_description/SPtests/rss/0.91-userland/atom/0.3/tagline.php deleted file mode 100644 index 2a44a8eb3..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.91-userland/atom/0.3/tagline.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_091_Userland_Atom_03_Tagline extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rss version="0.91" xmlns:a="http://purl.org/atom/ns#"> - <channel> - <a:tagline>Feed Description</a:tagline> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.91-userland/atom/1.0/subtitle.php b/simplepie/test/feed_description/SPtests/rss/0.91-userland/atom/1.0/subtitle.php deleted file mode 100644 index dab053e14..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.91-userland/atom/1.0/subtitle.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_091_Userland_Atom_10_Subtitle extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rss version="0.91" xmlns:a="http://www.w3.org/2005/Atom"> - <channel> - <a:subtitle>Feed Description</a:subtitle> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.91-userland/dc/1.0/description.php b/simplepie/test/feed_description/SPtests/rss/0.91-userland/dc/1.0/description.php deleted file mode 100644 index 652b7a642..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.91-userland/dc/1.0/description.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_091_Userland_DC_10_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.0/"> - <channel> - <dc:description>Feed Description</dc:description> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.91-userland/dc/1.1/description.php b/simplepie/test/feed_description/SPtests/rss/0.91-userland/dc/1.1/description.php deleted file mode 100644 index 653a6cfe4..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.91-userland/dc/1.1/description.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_091_Userland_DC_11_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <channel> - <dc:description>Feed Description</dc:description> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.91-userland/description.php b/simplepie/test/feed_description/SPtests/rss/0.91-userland/description.php deleted file mode 100644 index afc408b57..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.91-userland/description.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_091_Userland_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rss version="0.91"> - <channel> - <description>Feed Description</description> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.92/atom/0.3/tagline.php b/simplepie/test/feed_description/SPtests/rss/0.92/atom/0.3/tagline.php deleted file mode 100644 index 6573f30da..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.92/atom/0.3/tagline.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_092_Atom_03_Tagline extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rss version="0.92" xmlns:a="http://purl.org/atom/ns#"> - <channel> - <a:tagline>Feed Description</a:tagline> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.92/atom/1.0/subtitle.php b/simplepie/test/feed_description/SPtests/rss/0.92/atom/1.0/subtitle.php deleted file mode 100644 index 168185e2e..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.92/atom/1.0/subtitle.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_092_Atom_10_Subtitle extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rss version="0.92" xmlns:a="http://www.w3.org/2005/Atom"> - <channel> - <a:subtitle>Feed Description</a:subtitle> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.92/dc/1.0/description.php b/simplepie/test/feed_description/SPtests/rss/0.92/dc/1.0/description.php deleted file mode 100644 index 690a52c54..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.92/dc/1.0/description.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_092_DC_10_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rss version="0.92" xmlns:dc="http://purl.org/dc/elements/1.0/"> - <channel> - <dc:description>Feed Description</dc:description> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.92/dc/1.1/description.php b/simplepie/test/feed_description/SPtests/rss/0.92/dc/1.1/description.php deleted file mode 100644 index 27e3e6bc3..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.92/dc/1.1/description.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_092_DC_11_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rss version="0.92" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <channel> - <dc:description>Feed Description</dc:description> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/0.92/description.php b/simplepie/test/feed_description/SPtests/rss/0.92/description.php deleted file mode 100644 index ac17b67ce..000000000 --- a/simplepie/test/feed_description/SPtests/rss/0.92/description.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_092_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rss version="0.92"> - <channel> - <description>Feed Description</description> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/1.0/atom/0.3/tagline.php b/simplepie/test/feed_description/SPtests/rss/1.0/atom/0.3/tagline.php deleted file mode 100644 index 4a86e3bae..000000000 --- a/simplepie/test/feed_description/SPtests/rss/1.0/atom/0.3/tagline.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_10_Atom_03_Tagline extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:a="http://purl.org/atom/ns#"> - <channel> - <a:tagline>Feed Description</a:tagline> - </channel> -</rdf:RDF>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/1.0/atom/1.0/subtitle.php b/simplepie/test/feed_description/SPtests/rss/1.0/atom/1.0/subtitle.php deleted file mode 100644 index c193059de..000000000 --- a/simplepie/test/feed_description/SPtests/rss/1.0/atom/1.0/subtitle.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_10_Atom_10_Subtitle extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:a="http://www.w3.org/2005/Atom"> - <channel> - <a:subtitle>Feed Description</a:subtitle> - </channel> -</rdf:RDF>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/1.0/dc/1.0/description.php b/simplepie/test/feed_description/SPtests/rss/1.0/dc/1.0/description.php deleted file mode 100644 index 79135f67a..000000000 --- a/simplepie/test/feed_description/SPtests/rss/1.0/dc/1.0/description.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_10_DC_10_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.0/"> - <channel> - <dc:description>Feed Description</dc:description> - </channel> -</rdf:RDF>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/1.0/dc/1.1/description.php b/simplepie/test/feed_description/SPtests/rss/1.0/dc/1.1/description.php deleted file mode 100644 index dd4e64dd7..000000000 --- a/simplepie/test/feed_description/SPtests/rss/1.0/dc/1.1/description.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_10_DC_11_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <channel> - <dc:description>Feed Description</dc:description> - </channel> -</rdf:RDF>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/1.0/description.php b/simplepie/test/feed_description/SPtests/rss/1.0/description.php deleted file mode 100644 index 82a2479a3..000000000 --- a/simplepie/test/feed_description/SPtests/rss/1.0/description.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_10_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/"> - <channel> - <description>Feed Description</description> - </channel> -</rdf:RDF>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/2.0/atom/0.3/tagline.php b/simplepie/test/feed_description/SPtests/rss/2.0/atom/0.3/tagline.php deleted file mode 100644 index 7e13698d5..000000000 --- a/simplepie/test/feed_description/SPtests/rss/2.0/atom/0.3/tagline.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_20_Atom_03_Tagline extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rss version="2.0" xmlns:a="http://purl.org/atom/ns#"> - <channel> - <a:tagline>Feed Description</a:tagline> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/2.0/atom/1.0/subtitle.php b/simplepie/test/feed_description/SPtests/rss/2.0/atom/1.0/subtitle.php deleted file mode 100644 index 91807079b..000000000 --- a/simplepie/test/feed_description/SPtests/rss/2.0/atom/1.0/subtitle.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_20_Atom_10_Subtitle extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rss version="2.0" xmlns:a="http://www.w3.org/2005/Atom"> - <channel> - <a:subtitle>Feed Description</a:subtitle> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/2.0/dc/1.0/description.php b/simplepie/test/feed_description/SPtests/rss/2.0/dc/1.0/description.php deleted file mode 100644 index 4b094096e..000000000 --- a/simplepie/test/feed_description/SPtests/rss/2.0/dc/1.0/description.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_20_DC_10_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.0/"> - <channel> - <dc:description>Feed Description</dc:description> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/2.0/dc/1.1/description.php b/simplepie/test/feed_description/SPtests/rss/2.0/dc/1.1/description.php deleted file mode 100644 index 00088e8e2..000000000 --- a/simplepie/test/feed_description/SPtests/rss/2.0/dc/1.1/description.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_20_DC_11_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <channel> - <dc:description>Feed Description</dc:description> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/feed_description/SPtests/rss/2.0/description.php b/simplepie/test/feed_description/SPtests/rss/2.0/description.php deleted file mode 100644 index 1364082f8..000000000 --- a/simplepie/test/feed_description/SPtests/rss/2.0/description.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -class SimplePie_Feed_Description_Test_RSS_20_Description extends SimplePie_Feed_Description_Test -{ - function data() - { - $this->data = -'<rss version="2.0"> - <channel> - <description>Feed Description</description> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Feed Description'; - } -} - -?>
\ No newline at end of file |