# encoding: utf-8 rootdir = File.dirname(File.dirname(__FILE__)) $LOAD_PATH.unshift "#{rootdir}/lib" require 'test/unit' require 'rdiscount' class RDiscountTest < Test::Unit::TestCase def test_that_discount_does_not_blow_up_with_weird_formatting_case text = (<<-TEXT).gsub(/^ {4}/, '').rstrip 1. some text 1. TEXT RDiscount.new(text).to_html end def test_that_smart_converts_double_quotes_to_curly_quotes rd = RDiscount.new(%("Quoted text"), :smart) assert_equal %(
“Quoted text”
\n), rd.to_html end def test_that_smart_converts_double_quotes_to_curly_quotes_before_a_heading rd = RDiscount.new(%("Quoted text"\n\n# Heading), :smart) assert_equal %(“Quoted text”
\n\n“Quoted text”
\n), rd.to_html end def test_that_smart_gives_ve_suffix_a_rsquo rd = RDiscount.new("I've been meaning to tell you ..", :smart) assert_equal "I’ve been meaning to tell you ..
\n", rd.to_html end def test_that_smart_gives_m_suffix_a_rsquo rd = RDiscount.new("I'm not kidding", :smart) assert_equal "I’m not kidding
\n", rd.to_html end def test_that_smart_gives_d_suffix_a_rsquo rd = RDiscount.new("what'd you say?", :smart) assert_equal "what’d you say?
\n", rd.to_html end def test_that_generate_toc_sets_toc_ids rd = RDiscount.new("# Level 1\n\n## Level 2", :generate_toc) assert rd.generate_toc assert_equal %(\nhttp://github.com/rtomayko/rdiscount
\n", rd.to_html end def test_that_safelink_flag_works rd = RDiscount.new("[IRC](irc://chat.freenode.org/#freenode)", :safelink) assert_equal "[IRC](irc://chat.freenode.org/#freenode)
\n", rd.to_html end def test_that_no_pseudo_protocols_flag_works rd = RDiscount.new("[foo](id:bar)", :no_pseudo_protocols) assert_equal "[foo](id:bar)
\n", rd.to_html end def test_that_tags_can_have_dashes_and_underscores rd = RDiscount.new("foofoo