# frozen_string_literal: true

require "test_helper"

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

    assert_equal("<p>foo<br />\nbaz</p>\n", doc.to_html(:HARDBREAKS))
  end

  def test_hardbreak_with_spaces
    doc = CommonMarker.render_doc("foo  \nbaz")

    assert_equal("<p>foo<br />\nbaz</p>\n", doc.to_html(:HARDBREAKS))
  end
end
