Sha256: 0cee72884763400b0bfcb5fef7a105281c95993f1be6cbb8e8cdf64e2a95b96c
Contents?: true
Size: 803 Bytes
Versions: 91
Compression:
Stored size: 803 Bytes
Contents
require 'shoulda/action_mailer/matchers/have_sent_email' module Shoulda # :nodoc: module ActionMailer # :nodoc: # = Matchers for your mailers # # This matcher will test that email is sent properly # # describe User do # it { should have_sent_email.with_subject(/is spam$/) } # it { should have_sent_email.from('do-not-reply@example.com') } # it { should have_sent_email.with_body(/is spam\./) } # it { should have_sent_email.to('myself@me.com') } # it { should have_sent_email.with_subject(/spam/). # from('do-not-reply@example.com'). # with_body(/spam/). # to('myself@me.com') } # end module Matchers end end end
Version data entries
91 entries across 61 versions & 10 rubygems