rails rspec email_spec失败但真正的电子邮件工作

时间:2012-10-18 05:37:09

标签: ruby-on-rails-3 rspec2 email-spec

真正的电子邮件有效但测试失败。不确定什么是错的。有谁知道可能是什么问题?

TasksController   POST创建     有效的参数       给合作者发送电子邮件(FAILED - 1)

  it 'emails the collaborators' do
    post :create, { :task => valid_attributes }

    Emailer.should_receive(:send_email).with(user, :new_task, assigns(:task).project)
  end

失败:

1)TasksController POST使用有效的params电子邮件创建协作者      失败/错误:Emailer.should_receive(:send_email).with(user,:new_task,assigns(:task).project)        ()。send_email(#,:new_task,'blah')
           预计:1次
           收到:0次

我有以下宝石:
导轨(3.2.7)
rspec-rails(2.11.4)
email_spec(1.2.1)

0 个答案:

没有答案