0

我有一个文章模型,所以当一篇文章更新时我会向不同的人发送多封电子邮件,所以从我发送的电子邮件中,我想检查电子邮件是否已发送到例如;abc@foo.com更新时

所以这是我的尝试:

it "should notify abc  when article is updated" do
   post :update, {:id => article.id, :article => {:title => "Hello", :content => "some content"}}
   ActionMailer::Base.deliveries.last.to.should == ["abc@foo.com"]

end

上述测试失败,因为它需要发送通知的最后一封电子邮件.. 那么我如何检查电子邮件是否已发送给我在上面定义的人之一?

4

0 回答 0