aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/content_test.rb
blob: 48ba73159727a1df684c0f0e7527fdf58f383f07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require_relative '../test_helper'

module ActiveText
  class ContentTest < ActiveSupport::TestCase
    test "plain text conversion" do
      content = ActiveText::Content.new("<h1>Hello world</h1>")
      assert "Hello world", content.to_plain_text
    end
  end
end