我有一个actionmailer类和相关的开销,它完美地运行。但是,在我的单元测试(rails default minitest)中,电子邮件正文是空的。那是为什么?
我的邮件课程:
class TermsMailer < ApplicationMailer
default from: "info@domain.com"
def notice_email(user,filename)
@user = user
@file = filename
mail(to: "info@domain.com", subject: 'Data downloaded')
end
end
我的测试:
require 'test_helper'
class TermsMailerTest < ActionMailer::TestCase
test "notice" do
email = TermsMailer.notice_email(users(:me),'file.ext').deliver_now
assert_not ActionMailer::Base.deliveries.empty?
assert_equal ['info@domain.com'], email.from
assert_equal ['info@domain.com'], email.to
assert_equal 'Data downloaded', email.subject
assert_equal 'arbitrary garbage for comparison', email.body.to_s
end
end
此邮件的观看次数不是空白,实际上内容通过电子邮件发送。那么为什么我的测试中的电子邮件正文空白呢?
答案 0 :(得分:52)
您可能有两个版本的电子邮件模板(text.erb
和html.erb
)。
如果是这样,您可以将email.text_part.body.to_s
用于纯文本电子邮件,将email.html_part.body.to_s
用于HTML版本。