From 5dd3b0b71d1bea64ca813fc30c55fd7e6c0e2623 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Tue, 7 May 2013 16:45:15 +0200 Subject: [PATCH] Update tests to be compliant with #1037. --- test/test_redcarpet.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_redcarpet.rb b/test/test_redcarpet.rb index 74204136..5c7b6da1 100644 --- a/test/test_redcarpet.rb +++ b/test/test_redcarpet.rb @@ -13,7 +13,7 @@ class TestRedcarpet < Test::Unit::TestCase should "pass redcarpet options" do assert_equal "

Some Header

", @markdown.convert('# Some Header #').strip end - + should "pass redcarpet SmartyPants options" do assert_equal "

“smart”

", @markdown.convert('"smart"').strip end @@ -27,13 +27,13 @@ class TestRedcarpet < Test::Unit::TestCase end should "render fenced code blocks" do - assert_equal "
puts "Hello world"\n
", @markdown.convert( + assert_equal "
puts "Hello world"\n
", @markdown.convert( <<-EOS ```ruby puts "Hello world" ``` EOS - ).strip + ).strip end end end