Sha256: af5079eaab3b3016c5ab9e90bb3a49aa0208268789bfa30b6394fb867c35e2c6
Contents?: true
Size: 463 Bytes
Versions: 19
Compression:
Stored size: 463 Bytes
Contents
module Mail class TestMailer include Singleton # The Test Mailer provides a mail delivery method that does not hit # your network or mail agent, in this way you can send all the emails # you want and they will just be appended to Mail.deliveries # # See the README under Using Mail with Testing or Spec'ing Libraries # for more information. def TestMailer.deliver!(mail) Mail.deliveries << mail end end end
Version data entries
19 entries across 19 versions & 1 rubygems