2009-10-20 19:33:54 -04:00
|
|
|
begin
|
2009-12-16 12:56:51 -05:00
|
|
|
require File.expand_path('../../../vendor/gems/environment', __FILE__)
|
2009-10-20 19:33:54 -04:00
|
|
|
rescue LoadError
|
2009-10-14 23:59:45 -04:00
|
|
|
end
|
|
|
|
|
2009-12-16 12:56:51 -05:00
|
|
|
lib = File.expand_path('../../lib', __FILE__)
|
2009-11-10 00:28:36 -05:00
|
|
|
$:.unshift(lib) unless $:.include?('lib') || $:.include?(lib)
|
|
|
|
|
2009-02-03 21:57:01 -05:00
|
|
|
require 'rubygems'
|
2006-07-03 17:14:04 -04:00
|
|
|
require 'test/unit'
|
|
|
|
|
|
|
|
require 'action_mailer'
|
|
|
|
|
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
|
|
|
|
2009-10-15 17:41:59 -04:00
|
|
|
ActionView::Base::DEFAULT_CONFIG = { :assets_dir => '/nowhere' }
|
2009-10-15 03:21:55 -04:00
|
|
|
|
2006-07-03 17:14:04 -04:00
|
|
|
$:.unshift "#{File.dirname(__FILE__)}/fixtures/helpers"
|
2008-12-21 18:23:53 -05:00
|
|
|
|
|
|
|
FIXTURE_LOAD_PATH = File.join(File.dirname(__FILE__), 'fixtures')
|
|
|
|
ActionMailer::Base.template_root = FIXTURE_LOAD_PATH
|
2006-09-09 17:56:38 -04:00
|
|
|
|
|
|
|
class MockSMTP
|
2010-01-16 06:10:11 -05:00
|
|
|
|
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
|
2010-01-16 06:10:11 -05:00
|
|
|
|
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
|
|
|
|
2008-07-19 12:14:12 -04:00
|
|
|
def uses_gem(gem_name, test_name, version = '> 0')
|
|
|
|
gem gem_name.to_s, version
|
|
|
|
require gem_name.to_s
|
2007-01-21 18:20:44 -05:00
|
|
|
yield
|
2008-07-19 12:14:12 -04:00
|
|
|
rescue LoadError
|
|
|
|
$stderr.puts "Skipping #{test_name} tests. `gem install #{gem_name}` and try again."
|
|
|
|
end
|
|
|
|
|
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
|
|
|
|
end
|