Merge remote-tracking branch 'core/8.x' into 8.x-file-config

8.0.x
Greg Dunlap 2012-01-26 08:54:22 +01:00
commit b6d57235b6
2 changed files with 15 additions and 1 deletions

View File

@ -928,6 +928,6 @@ class FeedParserTestCase extends AggregatorTestCase {
aggregator_refresh($feed);
$this->drupalGet('aggregator/sources/' . $feed->fid);
$this->assertResponse(200, t('Feed %name exists.', array('%name' => $feed->title)));
$this->assertText("Quote" Amp&");
$this->assertRaw("Quote" Amp&");
}
}

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<rss version="0.91">
<channel>
<title>Example with Entities</title>
<link>http://example.com</link>
<description>Example RSS Feed With HTML Entities in Title</description>
<language>en-us</language>
<item>
<title>Quote&quot; Amp&amp;</title>
<link>http://example.com/example-turns-one</link>
<description>Some text.</description>
</item>
</channel>
</rss>