From 5c84028cadb36e7e2a220c7ab05398722c6d0e84 Mon Sep 17 00:00:00 2001 From: Per Andersson Date: Sat, 10 Oct 2015 22:33:58 +0200 Subject: [PATCH 1/2] Update output assert in autolinking pre statement The
 tag doesn't keep html entities.
---
 test/wiki_cloth_test.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/wiki_cloth_test.rb b/test/wiki_cloth_test.rb
index 2f0481a..483cecf 100644
--- a/test/wiki_cloth_test.rb
+++ b/test/wiki_cloth_test.rb
@@ -58,7 +58,7 @@ class WikiClothTest < Test::Unit::TestCase
   test "autolinking keeps html entities intact" do
     wiki = WikiCloth::Parser.new(:data => "
& >
& <
https://github.com/repo/README.md > &") data = wiki.to_html - assert_equal "\n

& >
& <
https://github.com/repo/README.md > &

", data + assert_equal "\n

& >
&amp; &lt;
https://github.com/repo/README.md > &

", data end test "image url override" do From a7eccc2970b0f1b1973881fe139b1f2cb51af2eb Mon Sep 17 00:00:00 2001 From: Per Andersson Date: Sat, 10 Oct 2015 22:40:25 +0200 Subject: [PATCH 2/2] Update output for table of content tests Newlines seems to have been removed from HTML output for TOC. * empty item in toc * toc declared as list * toc numbered --- test/wiki_cloth_test.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/wiki_cloth_test.rb b/test/wiki_cloth_test.rb index 483cecf..198295c 100644 --- a/test/wiki_cloth_test.rb +++ b/test/wiki_cloth_test.rb @@ -446,7 +446,7 @@ class WikiClothTest < Test::Unit::TestCase test "empty item in toc" do wiki = WikiCloth::WikiCloth.new({:data => "__TOC__\n=A="}) data = wiki.render - assert data.include?("
\n

Table of Contents

\n\n
") + assert data.include?('

Table of Contents

') end test "pre at beginning" do @@ -458,12 +458,14 @@ class WikiClothTest < Test::Unit::TestCase test "toc declared as list" do wiki = WikiCloth::WikiCloth.new({:data => "__TOC__\n=A=\n==B==\n===C==="}) data = wiki.render - assert data.include?("
\n

Table of Contents

\n\n
") + puts data + assert data.include?('

Table of Contents

') end test "toc numbered" do wiki = WikiCloth::WikiCloth.new({:data => "=A=\n=B=\n==C==\n==D==\n===E===\n===F===\n====G====\n====H====\n==I==\n=J=\n=K=\n===L===\n===M===\n====N====\n====O===="}) data = wiki.render(:noedit => true, :toc_numbered => true) - assert data.include?("
\n

Table of Contents

\n\n
") + assert data.include?('

Table of Contents

') + end end