diff options
Diffstat (limited to 'simplepie/test/first_item_contributor_name')
14 files changed, 0 insertions, 340 deletions
diff --git a/simplepie/test/first_item_contributor_name/SPtests/atom/0.3/name.php b/simplepie/test/first_item_contributor_name/SPtests/atom/0.3/name.php deleted file mode 100644 index 5dc4380e1..000000000 --- a/simplepie/test/first_item_contributor_name/SPtests/atom/0.3/name.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -class SimplePie_First_Item_Contributor_Name_Test_Atom_03_Name extends SimplePie_First_Item_Contributor_Name_Test -{ - function data() - { - $this->data = -'<feed version="0.3" xmlns="http://purl.org/atom/ns#"> - <entry> - <contributor> - <name>Item Contributor</name> - </contributor> - </entry> -</feed>'; - } - - function expected() - { - $this->expected = 'Item Contributor'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/first_item_contributor_name/SPtests/atom/1.0/name.php b/simplepie/test/first_item_contributor_name/SPtests/atom/1.0/name.php deleted file mode 100644 index 25185c514..000000000 --- a/simplepie/test/first_item_contributor_name/SPtests/atom/1.0/name.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -class SimplePie_First_Item_Contributor_Name_Test_Atom_10_Name extends SimplePie_First_Item_Contributor_Name_Test -{ - function data() - { - $this->data = -'<feed xmlns="http://www.w3.org/2005/Atom"> - <entry> - <contributor> - <name>Item Contributor</name> - </contributor> - </entry> -</feed>'; - } - - function expected() - { - $this->expected = 'Item Contributor'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/first_item_contributor_name/SPtests/rss/0.90/atom/0.3/name.php b/simplepie/test/first_item_contributor_name/SPtests/rss/0.90/atom/0.3/name.php deleted file mode 100644 index 281edd065..000000000 --- a/simplepie/test/first_item_contributor_name/SPtests/rss/0.90/atom/0.3/name.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -class SimplePie_First_Item_Contributor_Name_Test_RSS_090_Atom_03_Name extends SimplePie_First_Item_Contributor_Name_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#"> - <item> - <a:contributor> - <a:name>Item Contributor</a:name> - </a:contributor> - </item> -</rdf:RDF>'; - } - - function expected() - { - $this->expected = 'Item Contributor'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/first_item_contributor_name/SPtests/rss/0.90/atom/1.0/name.php b/simplepie/test/first_item_contributor_name/SPtests/rss/0.90/atom/1.0/name.php deleted file mode 100644 index a03949c2c..000000000 --- a/simplepie/test/first_item_contributor_name/SPtests/rss/0.90/atom/1.0/name.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -class SimplePie_First_Item_Contributor_Name_Test_RSS_090_Atom_10_Name extends SimplePie_First_Item_Contributor_Name_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"> - <item> - <a:contributor> - <a:name>Item Contributor</a:name> - </a:contributor> - </item> -</rdf:RDF>'; - } - - function expected() - { - $this->expected = 'Item Contributor'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/first_item_contributor_name/SPtests/rss/0.91-netscape/atom/0.3/name.php b/simplepie/test/first_item_contributor_name/SPtests/rss/0.91-netscape/atom/0.3/name.php deleted file mode 100644 index 58f3cc079..000000000 --- a/simplepie/test/first_item_contributor_name/SPtests/rss/0.91-netscape/atom/0.3/name.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php - -class SimplePie_First_Item_Contributor_Name_Test_RSS_091_Netscape_Atom_03_Name extends SimplePie_First_Item_Contributor_Name_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> - <item> - <a:contributor> - <a:name>Item Contributor</a:name> - </a:contributor> - </item> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Item Contributor'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/first_item_contributor_name/SPtests/rss/0.91-netscape/atom/1.0/name.php b/simplepie/test/first_item_contributor_name/SPtests/rss/0.91-netscape/atom/1.0/name.php deleted file mode 100644 index 3cfc61c57..000000000 --- a/simplepie/test/first_item_contributor_name/SPtests/rss/0.91-netscape/atom/1.0/name.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php - -class SimplePie_First_Item_Contributor_Name_Test_RSS_091_Netscape_Atom_10_Name extends SimplePie_First_Item_Contributor_Name_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> - <item> - <a:contributor> - <a:name>Item Contributor</a:name> - </a:contributor> - </item> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Item Contributor'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/first_item_contributor_name/SPtests/rss/0.91-userland/atom/0.3/name.php b/simplepie/test/first_item_contributor_name/SPtests/rss/0.91-userland/atom/0.3/name.php deleted file mode 100644 index 18d9764ab..000000000 --- a/simplepie/test/first_item_contributor_name/SPtests/rss/0.91-userland/atom/0.3/name.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -class SimplePie_First_Item_Contributor_Name_Test_RSS_091_Userland_Atom_03_Name extends SimplePie_First_Item_Contributor_Name_Test -{ - function data() - { - $this->data = -'<rss version="0.91" xmlns:a="http://purl.org/atom/ns#"> - <channel> - <item> - <a:contributor> - <a:name>Item Contributor</a:name> - </a:contributor> - </item> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Item Contributor'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/first_item_contributor_name/SPtests/rss/0.91-userland/atom/1.0/name.php b/simplepie/test/first_item_contributor_name/SPtests/rss/0.91-userland/atom/1.0/name.php deleted file mode 100644 index 4978f7c6e..000000000 --- a/simplepie/test/first_item_contributor_name/SPtests/rss/0.91-userland/atom/1.0/name.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -class SimplePie_First_Item_Contributor_Name_Test_RSS_091_Userland_Atom_10_Name extends SimplePie_First_Item_Contributor_Name_Test -{ - function data() - { - $this->data = -'<rss version="0.91" xmlns:a="http://www.w3.org/2005/Atom"> - <channel> - <item> - <a:contributor> - <a:name>Item Contributor</a:name> - </a:contributor> - </item> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Item Contributor'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/first_item_contributor_name/SPtests/rss/0.92/atom/0.3/name.php b/simplepie/test/first_item_contributor_name/SPtests/rss/0.92/atom/0.3/name.php deleted file mode 100644 index f1d4c6002..000000000 --- a/simplepie/test/first_item_contributor_name/SPtests/rss/0.92/atom/0.3/name.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -class SimplePie_First_Item_Contributor_Name_Test_RSS_092_Atom_03_Name extends SimplePie_First_Item_Contributor_Name_Test -{ - function data() - { - $this->data = -'<rss version="0.92" xmlns:a="http://purl.org/atom/ns#"> - <channel> - <item> - <a:contributor> - <a:name>Item Contributor</a:name> - </a:contributor> - </item> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Item Contributor'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/first_item_contributor_name/SPtests/rss/0.92/atom/1.0/name.php b/simplepie/test/first_item_contributor_name/SPtests/rss/0.92/atom/1.0/name.php deleted file mode 100644 index 0f3f7ed54..000000000 --- a/simplepie/test/first_item_contributor_name/SPtests/rss/0.92/atom/1.0/name.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -class SimplePie_First_Item_Contributor_Name_Test_RSS_092_Atom_10_Name extends SimplePie_First_Item_Contributor_Name_Test -{ - function data() - { - $this->data = -'<rss version="0.92" xmlns:a="http://www.w3.org/2005/Atom"> - <channel> - <item> - <a:contributor> - <a:name>Item Contributor</a:name> - </a:contributor> - </item> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Item Contributor'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/first_item_contributor_name/SPtests/rss/1.0/atom/0.3/name.php b/simplepie/test/first_item_contributor_name/SPtests/rss/1.0/atom/0.3/name.php deleted file mode 100644 index 25386d641..000000000 --- a/simplepie/test/first_item_contributor_name/SPtests/rss/1.0/atom/0.3/name.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -class SimplePie_First_Item_Contributor_Name_Test_RSS_10_Atom_03_Name extends SimplePie_First_Item_Contributor_Name_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#"> - <item> - <a:contributor> - <a:name>Item Contributor</a:name> - </a:contributor> - </item> -</rdf:RDF>'; - } - - function expected() - { - $this->expected = 'Item Contributor'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/first_item_contributor_name/SPtests/rss/1.0/atom/1.0/name.php b/simplepie/test/first_item_contributor_name/SPtests/rss/1.0/atom/1.0/name.php deleted file mode 100644 index f925e1d0e..000000000 --- a/simplepie/test/first_item_contributor_name/SPtests/rss/1.0/atom/1.0/name.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -class SimplePie_First_Item_Contributor_Name_Test_RSS_10_Atom_10_Name extends SimplePie_First_Item_Contributor_Name_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"> - <item> - <a:contributor> - <a:name>Item Contributor</a:name> - </a:contributor> - </item> -</rdf:RDF>'; - } - - function expected() - { - $this->expected = 'Item Contributor'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/first_item_contributor_name/SPtests/rss/2.0/atom/0.3/name.php b/simplepie/test/first_item_contributor_name/SPtests/rss/2.0/atom/0.3/name.php deleted file mode 100644 index 228307f11..000000000 --- a/simplepie/test/first_item_contributor_name/SPtests/rss/2.0/atom/0.3/name.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -class SimplePie_First_Item_Contributor_Name_Test_RSS_20_Atom_03_Name extends SimplePie_First_Item_Contributor_Name_Test -{ - function data() - { - $this->data = -'<rss version="2.0" xmlns:a="http://purl.org/atom/ns#"> - <channel> - <item> - <a:contributor> - <a:name>Item Contributor</a:name> - </a:contributor> - </item> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Item Contributor'; - } -} - -?>
\ No newline at end of file diff --git a/simplepie/test/first_item_contributor_name/SPtests/rss/2.0/atom/1.0/name.php b/simplepie/test/first_item_contributor_name/SPtests/rss/2.0/atom/1.0/name.php deleted file mode 100644 index 16a49e81f..000000000 --- a/simplepie/test/first_item_contributor_name/SPtests/rss/2.0/atom/1.0/name.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -class SimplePie_First_Item_Contributor_Name_Test_RSS_20_Atom_10_Name extends SimplePie_First_Item_Contributor_Name_Test -{ - function data() - { - $this->data = -'<rss version="2.0" xmlns:a="http://www.w3.org/2005/Atom"> - <channel> - <item> - <a:contributor> - <a:name>Item Contributor</a:name> - </a:contributor> - </item> - </channel> -</rss>'; - } - - function expected() - { - $this->expected = 'Item Contributor'; - } -} - -?>
\ No newline at end of file |