ソースを参照

Remove outdated tests

euromark 10 年 前
コミット
eefba29ce8
2 ファイル変更0 行追加724 行削除
  1. 0 132
      Test/Case/View/AjaxViewTest.php
  2. 0 592
      Test/Case/View/RssViewTest.php

+ 0 - 132
Test/Case/View/AjaxViewTest.php

@@ -1,132 +0,0 @@
-<?php
-/**
- * PHP 5
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice
- *
- * @author        Mark Scherer
- * @license http://opensource.org/licenses/mit-license.php MIT
- */
-
-App::uses('Controller', 'Controller');
-App::uses('CakeRequest', 'Network');
-App::uses('CakeResponse', 'Network');
-App::uses('AjaxView', 'Tools.View');
-
-/**
- * AjaxViewTest
- *
- */
-class AjaxViewTest extends CakeTestCase {
-
-	public $Ajax;
-
-	/**
-	 * AjaxViewTest::setUp()
-	 *
-	 * @return void
-	 */
-	public function setUp() {
-		parent::setUp();
-
-		$this->Ajax = new AjaxView();
-
-		App::build([
-			'View' => [CakePlugin::path('Tools') . 'Test' . DS . 'test_app' . DS . 'View' . DS]
-		], App::RESET);
-	}
-
-	/**
-	 * AjaxViewTest::testSerialize()
-	 *
-	 * @return void
-	 */
-	public function testSerialize() {
-		$Request = new CakeRequest();
-		$Response = new CakeResponse();
-		$Controller = new Controller($Request, $Response);
-		$items = [
-			['title' => 'Title One', 'link' => 'http://example.org/one', 'author' => 'one@example.org', 'description' => 'Content one'],
-			['title' => 'Title Two', 'link' => 'http://example.org/two', 'author' => 'two@example.org', 'description' => 'Content two'],
-		];
-		$Controller->set(['items' => $items, '_serialize' => ['items']]);
-		$View = new AjaxView($Controller);
-		$result = $View->render(false);
-
-		$this->assertSame('application/json', $Response->type());
-		$expected = ['error' => null, 'content' => null, 'items' => $items];
-		$expected = json_encode($expected);
-		$this->assertTextEquals($expected, $result);
-	}
-
-	/**
-	 * AjaxViewTest::testSerialize()
-	 *
-	 * @return void
-	 */
-	public function testRenderWithSerialize() {
-		$Request = new CakeRequest();
-		$Response = new CakeResponse();
-		$Controller = new Controller($Request, $Response);
-		$items = [
-			['title' => 'Title One', 'link' => 'http://example.org/one', 'author' => 'one@example.org', 'description' => 'Content one'],
-			['title' => 'Title Two', 'link' => 'http://example.org/two', 'author' => 'two@example.org', 'description' => 'Content two'],
-		];
-		$Controller->set(['items' => $items, '_serialize' => 'items']);
-		$View = new AjaxView($Controller);
-		$View->viewPath = 'Items';
-		$result = $View->render('index');
-
-		$this->assertSame('application/json', $Response->type());
-		$expected = ['error' => null, 'content' => 'My Index Test ctp', 'items' => $items];
-		$expected = json_encode($expected);
-		$this->assertTextEquals($expected, $result);
-	}
-
-	/**
-	 * AjaxViewTest::testError()
-	 *
-	 * @return void
-	 */
-	public function testError() {
-		$Request = new CakeRequest();
-		$Response = new CakeResponse();
-		$Controller = new Controller($Request, $Response);
-		$items = [
-			['title' => 'Title One', 'link' => 'http://example.org/one', 'author' => 'one@example.org', 'description' => 'Content one'],
-			['title' => 'Title Two', 'link' => 'http://example.org/two', 'author' => 'two@example.org', 'description' => 'Content two'],
-		];
-		$Controller->set(['error' => 'Some message', 'items' => $items, '_serialize' => ['error', 'items']]);
-		$View = new AjaxView($Controller);
-		$View->viewPath = 'Items';
-		$result = $View->render('index');
-
-		$this->assertSame('application/json', $Response->type());
-		$expected = ['error' => 'Some message', 'content' => null, 'items' => $items];
-		$expected = json_encode($expected);
-		$this->assertTextEquals($expected, $result);
-	}
-
-	/**
-	 * AjaxViewTest::testWithoutSubdir()
-	 *
-	 * @return void
-	 */
-	public function testWithoutSubdir() {
-		$Request = new CakeRequest();
-		$Response = new CakeResponse();
-		$Controller = new Controller($Request, $Response);
-		$View = new AjaxView($Controller);
-		$View->viewPath = 'Items';
-		$View->subDir = false;
-		$result = $View->render('index');
-
-		$this->assertSame('application/json', $Response->type());
-		$expected = ['error' => null, 'content' => 'My Index Test ctp'];
-		$expected = json_encode($expected);
-		$this->assertTextEquals($expected, $result);
-	}
-
-}

+ 0 - 592
Test/Case/View/RssViewTest.php

@@ -1,592 +0,0 @@
-<?php
-/**
- * PHP 5
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice
- *
- * @author        Mark Scherer
- * @license http://opensource.org/licenses/mit-license.php MIT
- */
-
-App::uses('Controller', 'Controller');
-App::uses('CakeRequest', 'Network');
-App::uses('CakeResponse', 'Network');
-App::uses('RssView', 'Tools.View');
-
-/**
- * RssViewTest
- *
- */
-class RssViewTest extends CakeTestCase {
-
-	public $Rss;
-
-	public $baseUrl;
-
-	/**
-	 * RssViewTest::setUp()
-	 *
-	 * @return void
-	 */
-	public function setUp() {
-		parent::setUp();
-
-		$this->Rss = new RssView();
-
-		$this->baseUrl = trim(Router::url('/', true), '/');
-	}
-
-	/**
-	 * TestTime method
-	 *
-	 * @return void
-	 */
-	public function testTime() {
-		$now = time();
-		$time = $this->Rss->time($now);
-		$this->assertEquals(date('r', $now), $time);
-	}
-
-	/**
-	 * RssViewTest::testSerialize()
-	 *
-	 * @return void
-	 */
-	public function testSerialize() {
-		$Request = new CakeRequest();
-		$Response = new CakeResponse();
-		$Controller = new Controller($Request, $Response);
-		$data = [
-			'channel' => [
-				'title' => 'Channel title',
-				'link' => 'http://channel.example.org',
-				'description' => 'Channel description'
-			],
-			'items' => [
-				['title' => 'Title One', 'link' => 'http://example.org/one',
-					'author' => 'one@example.org', 'description' => 'Content one',
-					'source' => ['url' => 'http://foo.bar']],
-				['title' => 'Title Two', 'link' => 'http://example.org/two',
-					'author' => 'two@example.org', 'description' => 'Content two',
-					'source' => ['url' => 'http://foo.bar', 'content' => 'Foo bar']],
-			]
-		];
-		$Controller->set(['channel' => $data, '_serialize' => 'channel']);
-		$View = new RssView($Controller);
-		$result = $View->render(false);
-
-		$expected = <<<RSS
-<?xml version="1.0" encoding="UTF-8"?>
-<rss version="2.0">
-  <channel>
-    <title>Channel title</title>
-    <link>http://channel.example.org</link>
-    <description>Channel description</description>
-    <item>
-      <title>Title One</title>
-      <link>http://example.org/one</link>
-      <author>one@example.org</author>
-      <description>Content one</description>
-      <source url="http://foo.bar">http://foo.bar</source>
-    </item>
-    <item>
-      <title>Title Two</title>
-      <link>http://example.org/two</link>
-      <author>two@example.org</author>
-      <description>Content two</description>
-      <source url="http://foo.bar">Foo bar</source>
-    </item>
-  </channel>
-</rss>
-
-RSS;
-		$this->assertSame('application/rss+xml', $Response->type());
-		$this->assertTextEquals($expected, $result);
-	}
-
-	/**
-	 * RssViewTest::testSerialize()
-	 *
-	 * @return void
-	 */
-	public function testSerializeWithPrefixes() {
-		$Request = new CakeRequest();
-		$Response = new CakeResponse();
-		$Controller = new Controller($Request, $Response);
-
-		$time = time();
-		$data = [
-			'channel' => [
-				'title' => 'Channel title',
-				'link' => 'http://channel.example.org',
-				'description' => 'Channel description',
-				'sy:updatePeriod' => 'hourly',
-				'sy:updateFrequency' => 1
-			],
-			'items' => [
-				['title' => 'Title One', 'link' => 'http://example.org/one',
-					'dc:creator' => 'Author One', 'pubDate' => $time],
-				['title' => 'Title Two', 'link' => 'http://example.org/two',
-					'dc:creator' => 'Author Two', 'pubDate' => $time,
-					'source' => 'http://foo.bar'],
-			]
-		];
-		$Controller->set(['channel' => $data, '_serialize' => 'channel']);
-		$View = new RssView($Controller);
-		$result = $View->render(false);
-
-		$time = date('r', $time);
-		$expected = <<<RSS
-<?xml version="1.0" encoding="UTF-8"?>
-<rss xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
-  <channel>
-    <title>Channel title</title>
-    <link>http://channel.example.org</link>
-    <description>Channel description</description>
-    <sy:updatePeriod>hourly</sy:updatePeriod>
-    <sy:updateFrequency>1</sy:updateFrequency>
-    <item>
-      <title>Title One</title>
-      <link>http://example.org/one</link>
-      <dc:creator>Author One</dc:creator>
-      <pubDate>$time</pubDate>
-    </item>
-    <item>
-      <title>Title Two</title>
-      <link>http://example.org/two</link>
-      <dc:creator>Author Two</dc:creator>
-      <pubDate>$time</pubDate>
-      <source url="http://foo.bar">http://foo.bar</source>
-    </item>
-  </channel>
-</rss>
-
-RSS;
-		//debug($result);
-		$this->assertSame('application/rss+xml', $Response->type());
-		$this->assertTextEquals($expected, $result);
-	}
-
-	/**
-	 * RssViewTest::testSerializeWithUnconfiguredPrefix()
-	 *
-	 * @expectedException RuntimeException
-	 * @return void
-	 */
-	public function testSerializeWithUnconfiguredPrefix() {
-		$Request = new CakeRequest();
-		$Response = new CakeResponse();
-		$Controller = new Controller($Request, $Response);
-
-		$data = [
-			'channel' => [
-				'foo:bar' => 'something',
-			],
-			'items' => [
-				['title' => 'Title Two'],
-			]
-		];
-		$Controller->set(['channel' => $data, '_serialize' => 'channel']);
-		$View = new RssView($Controller);
-		$result = $View->render(false);
-	}
-
-	/**
-	 * RssViewTest::testSerializeWithArrayLinks()
-	 *
-	 * `'atom:link' => array('@href' => array(...)` becomes
-	 * '@rel' => 'self', '@type' => 'application/rss+xml' automatically set for atom:link
-	 *
-	 * @return void
-	 */
-	public function testSerializeWithArrayLinks() {
-		$Request = new CakeRequest();
-		$Response = new CakeResponse();
-		$Controller = new Controller($Request, $Response);
-		$data = [
-			'channel' => [
-				'title' => 'Channel title',
-				'link' => 'http://channel.example.org',
-				'atom:link' => ['@href' => ['controller' => 'foo', 'action' => 'bar']],
-				'description' => 'Channel description',
-			],
-			'items' => [
-				['title' => 'Title One', 'link' => ['controller' => 'foo', 'action' => 'bar'], 'description' => 'Content one'],
-				['title' => 'Title Two', 'link' => ['controller' => 'foo', 'action' => 'bar'], 'description' => 'Content two'],
-			]
-		];
-		$Controller->set(['channel' => $data, '_serialize' => 'channel']);
-		$View = new RssView($Controller);
-		$result = $View->render(false);
-
-$expected = <<<RSS
-<?xml version="1.0" encoding="UTF-8"?>
-<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
-  <channel>
-    <title>Channel title</title>
-    <link>http://channel.example.org</link>
-    <atom:link href="$this->baseUrl/foo/bar" rel="self" type="application/rss+xml"/>
-    <description>Channel description</description>
-    <item>
-      <title>Title One</title>
-      <link>$this->baseUrl/foo/bar</link>
-      <description>Content one</description>
-    </item>
-    <item>
-      <title>Title Two</title>
-      <link>$this->baseUrl/foo/bar</link>
-      <description>Content two</description>
-    </item>
-  </channel>
-</rss>
-
-RSS;
-		//debug($result);
-		$this->assertSame('application/rss+xml', $Response->type());
-		$this->assertTextEquals($expected, $result);
-	}
-
-	/**
-	 * RssViewTest::testSerializeWithContent()
-	 *
-	 * @return void
-	 */
-	public function testSerializeWithContent() {
-		$Request = new CakeRequest();
-		$Response = new CakeResponse();
-		$Controller = new Controller($Request, $Response);
-		$data = [
-			'channel' => [
-				'title' => 'Channel title',
-				'link' => 'http://channel.example.org',
-				'guid' => ['url' => 'http://channel.example.org', '@isPermaLink' => 'true'],
-				'atom:link' => ['@href' => ['controller' => 'foo', 'action' => 'bar']],
-			],
-			'items' => [
-				['title' => 'Title One', 'link' => ['controller' => 'foo', 'action' => 'bar'], 'description' => 'Content one',
-					'content:encoded' => 'HTML <img src="http://domain.com/some/link/to/image.jpg"/> <b>content</b> one'],
-				['title' => 'Title Two', 'link' => ['controller' => 'foo', 'action' => 'bar'], 'description' => 'Content two',
-					'content:encoded' => 'HTML <img src="http://domain.com/some/link/to/image.jpg"/> <b>content</b> two'],
-			]
-		];
-		$Controller->set(['channel' => $data, '_serialize' => 'channel']);
-		$View = new RssView($Controller);
-		$result = $View->render(false);
-
-		$expected = <<<RSS
-<?xml version="1.0" encoding="UTF-8"?>
-<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
-  <channel>
-    <title>Channel title</title>
-    <link>http://channel.example.org</link>
-    <guid isPermaLink="true">http://channel.example.org</guid>
-    <atom:link href="$this->baseUrl/foo/bar" rel="self" type="application/rss+xml"/>
-    <description/>
-    <item>
-      <title>Title One</title>
-      <link>$this->baseUrl/foo/bar</link>
-      <description>Content one</description>
-      <content:encoded><![CDATA[HTML <img src="http://domain.com/some/link/to/image.jpg"/> <b>content</b> one]]></content:encoded>
-    </item>
-    <item>
-      <title>Title Two</title>
-      <link>$this->baseUrl/foo/bar</link>
-      <description>Content two</description>
-      <content:encoded><![CDATA[HTML <img src="http://domain.com/some/link/to/image.jpg"/> <b>content</b> two]]></content:encoded>
-    </item>
-  </channel>
-</rss>
-
-RSS;
-		//debug($output);
-		$this->assertTextEquals($expected, $result);
-	}
-
-	/**
-	 * RssViewTest::testSerializeWithCustomNamespace()
-	 *
-	 * @return void
-	 */
-	public function testSerializeWithCustomNamespace() {
-		$Request = new CakeRequest();
-		$Response = new CakeResponse();
-		$Controller = new Controller($Request, $Response);
-		$data = [
-			'document' => [
-				'namespace' => [
-					'admin' => 'http://webns.net/mvcb/',
-					'rdf' => 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'
-				]
-			],
-			'channel' => [
-				'title' => 'Channel title',
-				'admin:errorReportsTo' => ['@rdf:resource' => 'mailto:me@example.com']
-			],
-			'items' => [
-				['title' => 'Title One', 'link' => ['controller' => 'foo', 'action' => 'bar']],
-			]
-		];
-		$Controller->set(['channel' => $data, '_serialize' => 'channel']);
-		$View = new RssView($Controller);
-		$result = $View->render(false);
-
-		$expected = <<<RSS
-<?xml version="1.0" encoding="UTF-8"?>
-<rss xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" version="2.0">
-  <channel>
-    <title>Channel title</title>
-    <admin:errorReportsTo rdf:resource="mailto:me@example.com"/>
-    <link>$this->baseUrl/</link>
-    <description/>
-    <item>
-      <title>Title One</title>
-      <link>$this->baseUrl/foo/bar</link>
-    </item>
-  </channel>
-</rss>
-
-RSS;
-		//debug($result);
-		$this->assertTextEquals($expected, $result);
-	}
-
-	/**
-	 * RssViewTest::testSerializeWithImage()
-	 *
-	 * @return void
-	 */
-	public function testSerializeWithImage() {
-		$Request = new CakeRequest();
-		$Response = new CakeResponse();
-		$Controller = new Controller($Request, $Response);
-		$url = ['controller' => 'topics', 'action' => 'feed', 'ext' => 'rss'];
-		$data = [
-			'channel' => [
-				'title' => 'Channel title',
-				'guid' => ['url' => $url, '@isPermaLink' => 'true'],
-				'image' => [
-					'url' => '/img/logo_rss.png',
-					'link' => '/'
-				]
-			],
-			'items' => [
-				['title' => 'Title One', 'link' => ['controller' => 'foo', 'action' => 'bar']],
-			]
-		];
-		$Controller->set(['channel' => $data, '_serialize' => 'channel']);
-		$View = new RssView($Controller);
-		$result = $View->render(false);
-
-		$expected = <<<RSS
-<?xml version="1.0" encoding="UTF-8"?>
-<rss version="2.0">
-  <channel>
-    <title>Channel title</title>
-    <guid isPermaLink="true">$this->baseUrl/topics/feed.rss</guid>
-    <image>
-      <url>$this->baseUrl/img/logo_rss.png</url>
-      <link>$this->baseUrl/</link>
-      <title>Channel title</title>
-    </image>
-    <link>$this->baseUrl/</link>
-    <description/>
-    <item>
-      <title>Title One</title>
-      <link>$this->baseUrl/foo/bar</link>
-    </item>
-  </channel>
-</rss>
-
-RSS;
-		$this->assertTextEquals($expected, $result);
-	}
-
-	/**
-	 * RssViewTest::testSerializeWithCategories()
-	 *
-	 * @return void
-	 */
-	public function testSerializeWithCategories() {
-		$Request = new CakeRequest();
-		$Response = new CakeResponse();
-		$Controller = new Controller($Request, $Response);
-		$data = [
-			'channel' => [
-				'title' => 'Channel title',
-				'link' => 'http://channel.example.org',
-				'category' => 'IT/Internet/Web development & more',
-			],
-			'items' => [
-				['title' => 'Title One', 'link' => ['controller' => 'foo', 'action' => 'bar'], 'description' => 'Content one',
-					'category' => 'Internet'],
-				['title' => 'Title Two', 'link' => ['controller' => 'foo', 'action' => 'bar'], 'description' => 'Content two',
-					'category' => ['News', 'Tutorial'],
-					'comments' => ['controller' => 'foo', 'action' => 'bar', 'ext' => 'rss']],
-			]
-		];
-		$Controller->set(['channel' => $data, '_serialize' => 'channel']);
-		$View = new RssView($Controller);
-		$result = $View->render(false);
-
-		$expected = <<<RSS
-<?xml version="1.0" encoding="UTF-8"?>
-<rss version="2.0">
-  <channel>
-    <title>Channel title</title>
-    <link>http://channel.example.org</link>
-    <category>IT/Internet/Web development &amp; more</category>
-    <description/>
-    <item>
-      <title>Title One</title>
-      <link>$this->baseUrl/foo/bar</link>
-      <description>Content one</description>
-      <category>Internet</category>
-    </item>
-    <item>
-      <title>Title Two</title>
-      <link>$this->baseUrl/foo/bar</link>
-      <description>Content two</description>
-      <category>News</category>
-      <category>Tutorial</category>
-      <comments>$this->baseUrl/foo/bar.rss</comments>
-    </item>
-  </channel>
-</rss>
-
-RSS;
-		$this->assertTextEquals($expected, $result);
-	}
-
-	/**
-	 * RssViewTest::testSerializeWithEnclosure()
-	 *
-	 * @return void
-	 */
-	public function testSerializeWithEnclosure() {
-		$Request = new CakeRequest();
-		$Response = new CakeResponse();
-		$Controller = new Controller($Request, $Response);
-		$data = [
-			'channel' => [
-				'title' => 'Channel title',
-				'link' => 'http://channel.example.org',
-			],
-			'items' => [
-				['title' => 'Title One', 'link' => ['controller' => 'foo', 'action' => 'bar'], 'description' => 'Content one',
-					'enclosure' => ['url' => 'http://www.example.com/media/3d.wmv', 'length' => 78645, 'type' => 'video/wmv']],
-			]
-		];
-		$Controller->set(['channel' => $data, '_serialize' => 'channel']);
-		$View = new RssView($Controller);
-		$result = $View->render(false);
-
-		$expected = <<<RSS
-<?xml version="1.0" encoding="UTF-8"?>
-<rss version="2.0">
-  <channel>
-    <title>Channel title</title>
-    <link>http://channel.example.org</link>
-    <description/>
-    <item>
-      <title>Title One</title>
-      <link>$this->baseUrl/foo/bar</link>
-      <description>Content one</description>
-      <enclosure url="http://www.example.com/media/3d.wmv" length="78645" type="video/wmv"/>
-    </item>
-  </channel>
-</rss>
-
-RSS;
-		$this->assertTextEquals($expected, $result);
-	}
-
-	/**
-	 * RssViewTest::testSerializeWithCustomTags()
-	 *
-	 * @return void
-	 */
-	public function testSerializeWithCustomTags() {
-		$Request = new CakeRequest();
-		$Response = new CakeResponse();
-		$Controller = new Controller($Request, $Response);
-		$data = [
-			'channel' => [
-				'title' => 'Channel title',
-				'link' => 'http://channel.example.org',
-			],
-			'items' => [
-				['title' => 'Title One', 'link' => ['controller' => 'foo', 'action' => 'bar'], 'description' => 'Content one',
-					'foo' => ['@url' => 'http://www.example.com/media/3d.wmv', '@length' => 78645, '@type' => 'video/wmv']],
-			]
-		];
-		$Controller->set(['channel' => $data, '_serialize' => 'channel']);
-		$View = new RssView($Controller);
-		$result = $View->render(false);
-
-		$expected = <<<RSS
-<?xml version="1.0" encoding="UTF-8"?>
-<rss version="2.0">
-  <channel>
-    <title>Channel title</title>
-    <link>http://channel.example.org</link>
-    <description/>
-    <item>
-      <title>Title One</title>
-      <link>$this->baseUrl/foo/bar</link>
-      <description>Content one</description>
-      <foo url="http://www.example.com/media/3d.wmv" length="78645" type="video/wmv"/>
-    </item>
-  </channel>
-</rss>
-
-RSS;
-		$this->assertTextEquals($expected, $result);
-	}
-
-	/**
-	 * RssViewTest::testSerializeWithSpecialChars()
-	 *
-	 * @return void
-	 */
-	public function testSerializeWithSpecialChars() {
-		$Request = new CakeRequest();
-		$Response = new CakeResponse();
-		$Controller = new Controller($Request, $Response);
-		$data = [
-			'channel' => [
-				'title' => 'Channel title with äöü umlauts and <!> special chars',
-				'link' => 'http://channel.example.org',
-			],
-			'items' => [
-				[
-					'title' => 'A <unsafe title',
-					'link' => ['controller' => 'foo', 'action' => 'bar'],
-					'description' => 'My content "&" and <other> stuff here should also be escaped safely'],
-			]
-		];
-		$Controller->set(['channel' => $data, '_serialize' => 'channel']);
-		$View = new RssView($Controller);
-		$result = $View->render(false);
-
-		$expected = <<<RSS
-<?xml version="1.0" encoding="UTF-8"?>
-<rss version="2.0">
-  <channel>
-    <title>Channel title with äöü umlauts and &lt;!&gt; special chars</title>
-    <link>http://channel.example.org</link>
-    <description/>
-    <item>
-      <title>A &lt;unsafe title</title>
-      <link>$this->baseUrl/foo/bar</link>
-      <description>My content "&amp;" and &lt;other&gt; stuff here should also be escaped safely</description>
-    </item>
-  </channel>
-</rss>
-
-RSS;
-		$this->assertTextEquals($expected, $result);
-	}
-
-}