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