我有一个 Rails 3.2 应用程序,我正在尝试测试一个方法是否正确触发电子邮件。我知道它可以从控制台测试它。但是,我无法让我的测试通过 RSpec 测试。
应该发生的情况是,如果昨天有一篇文章尚未审核,它应该发送一封电子邮件。
# article.rb
scope :yesterday, where(:date=>Date.yesterday)
scope :not_reviewed, where(:reviewed=>nil)
def self.articles_not_updated
@articles_not_updated = Article.yesterday.not_reviewed
if @articles_not_updated.present?
Mailer.articles_not_updated(@articles_not_updated)
end
end
# article_spec.rb
context "articles not updated" do
it "should send an email if there are articles not reviewed" do
@article = FactoryGirl.create(:article, date: Date.yesterday, reviewed: nil)
Article.articles_not_updated
ActionMailer::Base.deliveries.empty?.should be_false
end
end
我不断收到返回错误的失败消息。我也尝试过使用Mailer.should_receive(:articles_not_updated)
,但该测试也失败了。有人可以帮我弄清楚我做错了什么吗?
* 更新 - 添加错误消息* **
expected: false value
got: true