aboutsummaryrefslogblamecommitdiffstats
path: root/test/unit/model_test.rb
blob: bdfe88adc82daa148fb20f20e07a3f0c21666f83 (plain) (tree)





















                                                                                                                             

     
require 'test_helper'

class ActionText::ModelTest < ActiveSupport::TestCase
  test "plain text conversion" do
    message = Message.new(subject: "Greetings", content: "<h1>Hello world</h1>")
    assert_equal "Hello world", message.content.body.to_plain_text
  end

  test "without content" do
    message = Message.create!(subject: "Greetings")
    assert message.content.body.nil?
  end

  test "embed extraction" do
    blob = create_file_blob(filename: "racecar.jpg", content_type: "image/jpg")
    message = Message.create!(subject: "Greetings", content: ActionText::Content.new("Hello world").append_attachables(blob))
    assert_equal "racecar.jpg", message.content.embeds.first.filename.to_s
  end

  test "saving content" do
    message = Message.create!(subject: "Greetings", content: "<h1>Hello world</h1>")
    assert_equal "Hello world", message.content.body.to_plain_text
  end
end