我遇到的问题是,当第一次调用邮件程序时,它首次调用 ActionMailer :: Base#mail 方法时,测试会挂起,大约需要10分钟。有没有人经历过这个?
CircleCi图片图片:circleci / ruby:2.4.3-node
我的测试
class Notifier::AccountMailer < NotifierMailer
def welcome(user_id)
@user = User.find user_id
mail(to: @user.email, subject: t('subject.welcome'))
end
end
RSpec.describe Notifier::AccountMailer, type: :mailer do
describe '.welcome' do
let(:user) { build_stubbed(:user) }
let(:mail) { described_class.welcome(1) }
before { allow(User).to receive(:find).and_return(user) }
it 'Send from <notify@my-server.me>' do
expect(mail.from).to eq(['notify@my-server.me'])
end
it 'Send to account e-mail' do
expect(mail.to).to eq([user.email])
end
end
end
只有在一切正常后才能在邮件方法的第一次调用中发生缓慢。