diff options
author | David Rothstein <drothstein@gmail.com> | 2014-05-05 11:59:23 -0400 |
---|---|---|
committer | David Rothstein <drothstein@gmail.com> | 2014-05-05 11:59:23 -0400 |
commit | 478d1a04962de0ae6ef93fc2bde0c751840d36e6 (patch) | |
tree | f0f1ec5c90a4f583f61f3c807d4811f5265861fc /modules/aggregator/tests | |
parent | c32199c82b0262ec2a1879e2f211263c0911a11a (diff) | |
download | brdo-478d1a04962de0ae6ef93fc2bde0c751840d36e6.tar.gz brdo-478d1a04962de0ae6ef93fc2bde0c751840d36e6.tar.bz2 |
Issue #61456 by Albert Volkman, jeffschuler, David_Rothstein, jdefay, edmund.kwok, pillarsdotnet, xjm, alex_b, csevb10, Steve Dondley: Write tests for issues with aggregator titles displaying quotes and other characters with HTML entity equivalents badly.
Diffstat (limited to 'modules/aggregator/tests')
-rw-r--r-- | modules/aggregator/tests/aggregator_test_title_entities.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/aggregator/tests/aggregator_test_title_entities.xml b/modules/aggregator/tests/aggregator_test_title_entities.xml new file mode 100644 index 000000000..e526e4418 --- /dev/null +++ b/modules/aggregator/tests/aggregator_test_title_entities.xml @@ -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" Amp&</title> + <link>http://example.com/example-turns-one</link> + <description>Some text.</description> + </item> + </channel> +</rss> |