mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
55 lines
No EOL
1.3 KiB
Ruby
55 lines
No EOL
1.3 KiB
Ruby
begin
|
|
require File.expand_path('../../../vendor/gems/environment', __FILE__)
|
|
rescue LoadError
|
|
end
|
|
|
|
lib = File.expand_path('../../lib', __FILE__)
|
|
$:.unshift(lib) unless $:.include?('lib') || $:.include?(lib)
|
|
|
|
require 'rubygems'
|
|
require 'test/unit'
|
|
require 'action_mailer'
|
|
|
|
# Show backtraces for deprecated behavior for quicker cleanup.
|
|
ActiveSupport::Deprecation.debug = true
|
|
|
|
# Bogus template processors
|
|
ActionView::Template.register_template_handler :haml, lambda { |template| "Look its HAML!".inspect }
|
|
ActionView::Template.register_template_handler :bak, lambda { |template| "Lame backup".inspect }
|
|
|
|
FIXTURE_LOAD_PATH = File.expand_path('fixtures', File.dirname(__FILE__))
|
|
ActionMailer::Base.view_paths = FIXTURE_LOAD_PATH
|
|
$:.unshift File.join(FIXTURE_LOAD_PATH, 'helpers')
|
|
|
|
class MockSMTP
|
|
def self.deliveries
|
|
@@deliveries
|
|
end
|
|
|
|
def initialize
|
|
@@deliveries = []
|
|
end
|
|
|
|
def sendmail(mail, from, to)
|
|
@@deliveries << [mail, from, to]
|
|
end
|
|
|
|
def start(*args)
|
|
yield self
|
|
end
|
|
end
|
|
|
|
class Net::SMTP
|
|
def self.new(*args)
|
|
MockSMTP.new
|
|
end
|
|
end
|
|
|
|
def set_delivery_method(method)
|
|
@old_delivery_method = ActionMailer::Base.delivery_method
|
|
ActionMailer::Base.delivery_method = method
|
|
end
|
|
|
|
def restore_delivery_method
|
|
ActionMailer::Base.delivery_method = @old_delivery_method
|
|
end |