Displaying 1 result from an estimated 1 matches for "curriculum_comment".
2011 Jul 27
3
Rspec with ActionMailer and .deliver
...process of migrating from Rails 2 with rspec 1 to Rails 3 with
rspec 2, the process has been going pretty well, however, today I came
across an issue that I wanted to share.
I have a controller that sends out an email through a mailer.
Rails 2
code: CurriculumCommentMailer.deliver_comment_update(@curriculum_comment,
"created")
Rails 3 code: CurriculumCommentMailer.comment_update(@curriculum_comment,
"created").deliver
In my controller spec, I test to see if the email was sent out.
Rspec 1
it "emails the comment" do
CurriculumCommentMailer.should_receive(:deli...