From 012e6ee84a7094fa3f873353b5d8ba6bf0e8e4f9 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Fri, 21 Jul 2006 01:56:56 +0000 Subject: [PATCH] added a test for complex html stripping because it was reportedly not working --- t/HTML.t | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/t/HTML.t b/t/HTML.t index 9183e2540..3b6fd5255 100644 --- a/t/HTML.t +++ b/t/HTML.t @@ -40,6 +40,12 @@ my @filterSets = ( type => 'all', comment => 'all filter HTML', }, + { + inputText => q!
This is some text here. Let's see what we get when we add a table.
ab
cd
Here's a little more text with bold, strong, and bold strong.
!, + output => q!This is some text here. Let's see what we get when we add a table.abcdHere's a little more text with bold, strong, and bold strong.!, + type => 'all', + comment => 'all filter complex HTML', + }, { inputText => q!

Paragraph

^H();!, output => q!Paragraph^H();!,