discourse/spec/lib/email/renderer_spec.rb
Jarek Radosz 45cc16098d
DEV: Move spec/components to spec/lib (#15987)
Lib specs were inexplicably split into two directories (`lib` and `components`)

This moves them all into `lib`.
2022-02-18 19:41:54 +01:00

29 lines
518 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
require 'email/renderer'
describe Email::Renderer do
let(:message) do
mail = Mail.new
mail.text_part = Mail::Part.new do
body 'Key & Peele'
end
mail.html_part = Mail::Part.new do
content_type 'text/html; charset=UTF-8'
body '<h1>Key &amp; Peele</h1>'
end
mail
end
it "escapes HTML entities from text" do
renderer = Email::Renderer.new(message)
expect(renderer.text).to eq("Key & Peele")
end
end