require 'test_helper' class TestLinebreaks < Minitest::Test def test_hardbreak_no_spaces doc = CommonMarker.render_doc("foo\nbaz") assert_equal "

foo
\nbaz

\n", doc.to_html(:hardbreaks) end def test_hardbreak_with_spaces doc = CommonMarker.render_doc("foo \nbaz") assert_equal "

foo
\nbaz

\n", doc.to_html(:hardbreaks) end end