ruby-on-rails – RSpec和测试Devise的邮件程序

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – RSpec和测试Devise的邮件程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Devise中发送确认电子邮件时遇到了一些问题.这就是我想为此功能编写测试的原因.当我不创建自己的邮件时,我怎么能这样做?

编辑

我决定,这应该足够了:

it 'should send an email' do
  user
  put :complete,params
  user.send(:send_confirmation_notification?).should == true
end

如果我错过了什么,请告诉我.

解决方法

原文链接:https://www.f2er.com/ruby/270003.html

猜你在找的Ruby相关文章