1

我有一个 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
4

1 回答 1

0

根据我们的聊天室对话,should_receive需要在执行预期发送相关消息的代码之前出现。这至少解释了为什么您的替代测试失败了。

于 2013-07-30T03:57:58.820 回答