Sha256: d9a3d54757135f8f855564c8b0307ff87d9d32aa17238219818b5d635228d464
Contents?: true
Size: 1.04 KB
Versions: 24
Compression:
Stored size: 1.04 KB
Contents
# frozen_string_literal: true ############################################################################## # Email Plugin ############################################################################## # # The approach to this plugin is twofold. First it uses the excellent email_spec # gem to add helpers and matchers to any spec file with :email => true set. # Secondly, it will also clear all deliveries from ActionMailer if it is loaded. # # https://github.com/bmabey/email-spec/ # begin require 'email_spec' RSpec.configure do |config| config.include EmailSpec::Helpers, :email => true config.include EmailSpec::Matchers, :email => true config.include EmailSpec::MailerDeliveries, :email => true end rescue LoadError end if defined? ActionMailer RSpec.configure do |config| config.before(:each, :email => true) do if defined?(ActionMailer) && ActionMailer::Base.delivery_method == :cache mailer.clear_cache else deliveries.clear end end end end
Version data entries
24 entries across 24 versions & 1 rubygems