2010-03-17 02:24:00 -04:00
|
|
|
# Pathname has a warning, so require it first while silencing
|
|
|
|
# warnings to shut it up.
|
|
|
|
#
|
|
|
|
# Also, in 1.9, Bundler creates warnings due to overriding
|
|
|
|
# Rubygems methods
|
|
|
|
begin
|
|
|
|
old, $VERBOSE = $VERBOSE, nil
|
|
|
|
require 'pathname'
|
|
|
|
require File.expand_path('../../../load_paths', __FILE__)
|
|
|
|
ensure
|
|
|
|
$VERBOSE = old
|
|
|
|
end
|
|
|
|
|
2010-08-22 17:43:31 -04:00
|
|
|
require 'active_support/core_ext/kernel/reporting'
|
|
|
|
|
2011-12-24 07:57:54 -05:00
|
|
|
# These are the normal settings that will be set up by Railties
|
|
|
|
# TODO: Have these tests support other combinations of these values
|
|
|
|
silence_warnings do
|
|
|
|
Encoding.default_internal = "UTF-8"
|
|
|
|
Encoding.default_external = "UTF-8"
|
2010-08-21 21:53:04 -04:00
|
|
|
end
|
2010-03-17 02:24:00 -04:00
|
|
|
|
2010-02-28 19:18:21 -05:00
|
|
|
lib = File.expand_path("#{File.dirname(__FILE__)}/../lib")
|
|
|
|
$:.unshift(lib) unless $:.include?('lib') || $:.include?(lib)
|
|
|
|
|
2012-01-06 18:18:12 -05:00
|
|
|
require 'minitest/autorun'
|
2006-07-03 17:14:04 -04:00
|
|
|
require 'action_mailer'
|
2010-02-01 17:34:23 -05:00
|
|
|
require 'action_mailer/test_case'
|
2006-07-03 17:14:04 -04:00
|
|
|
|
2011-04-26 06:04:48 -04:00
|
|
|
silence_warnings do
|
|
|
|
# These external dependencies have warnings :/
|
|
|
|
require 'mail'
|
|
|
|
end
|
|
|
|
|
2006-09-03 23:38:13 -04:00
|
|
|
# Show backtraces for deprecated behavior for quicker cleanup.
|
|
|
|
ActiveSupport::Deprecation.debug = true
|
|
|
|
|
2008-12-03 14:58:47 -05:00
|
|
|
# Bogus template processors
|
2008-12-21 18:23:53 -05:00
|
|
|
ActionView::Template.register_template_handler :haml, lambda { |template| "Look its HAML!".inspect }
|
|
|
|
ActionView::Template.register_template_handler :bak, lambda { |template| "Lame backup".inspect }
|
2008-12-03 14:58:47 -05:00
|
|
|
|
2010-01-24 13:36:42 -05:00
|
|
|
FIXTURE_LOAD_PATH = File.expand_path('fixtures', File.dirname(__FILE__))
|
|
|
|
ActionMailer::Base.view_paths = FIXTURE_LOAD_PATH
|
2008-12-21 18:23:53 -05:00
|
|
|
|
2010-02-28 19:18:21 -05:00
|
|
|
class MockSMTP
|
2006-09-09 17:56:38 -04:00
|
|
|
def self.deliveries
|
|
|
|
@@deliveries
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
@@deliveries = []
|
|
|
|
end
|
|
|
|
|
|
|
|
def sendmail(mail, from, to)
|
|
|
|
@@deliveries << [mail, from, to]
|
|
|
|
end
|
2008-11-05 22:54:37 -05:00
|
|
|
|
|
|
|
def start(*args)
|
|
|
|
yield self
|
|
|
|
end
|
2006-09-09 17:56:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class Net::SMTP
|
2008-11-05 22:54:37 -05:00
|
|
|
def self.new(*args)
|
|
|
|
MockSMTP.new
|
2006-09-09 17:56:38 -04:00
|
|
|
end
|
|
|
|
end
|
2007-01-21 18:20:44 -05:00
|
|
|
|
2010-01-16 06:10:11 -05:00
|
|
|
def set_delivery_method(method)
|
2007-11-07 11:05:17 -05:00
|
|
|
@old_delivery_method = ActionMailer::Base.delivery_method
|
2010-01-16 06:10:11 -05:00
|
|
|
ActionMailer::Base.delivery_method = method
|
2007-11-07 11:05:17 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def restore_delivery_method
|
|
|
|
ActionMailer::Base.delivery_method = @old_delivery_method
|
2010-08-21 21:53:04 -04:00
|
|
|
end
|
2010-08-29 19:42:09 -04:00
|
|
|
|
2011-02-09 13:11:29 -05:00
|
|
|
ActiveSupport::Deprecation.silenced = true
|