2009-02-28 02:23:00 +01:00
|
|
|
require 'rubygems'
|
2007-02-10 00:12:31 +01:00
|
|
|
require 'test/unit'
|
|
|
|
|
2010-05-25 19:45:45 +02:00
|
|
|
$:.unshift File.expand_path('../../lib', __FILE__)
|
|
|
|
$:.unshift File.expand_path('../../../activesupport/lib', __FILE__)
|
|
|
|
$:.unshift File.expand_path('../../../actionpack/lib', __FILE__)
|
2007-02-10 00:12:31 +01:00
|
|
|
require 'action_mailer'
|
2007-12-21 08:48:59 +01:00
|
|
|
require 'action_mailer/test_case'
|
2007-02-10 00:12:31 +01:00
|
|
|
|
|
|
|
# Show backtraces for deprecated behavior for quicker cleanup.
|
|
|
|
ActiveSupport::Deprecation.debug = true
|
|
|
|
|
2009-02-04 21:26:08 +01:00
|
|
|
# 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 }
|
|
|
|
|
2007-02-10 00:12:31 +01:00
|
|
|
$:.unshift "#{File.dirname(__FILE__)}/fixtures/helpers"
|
2009-02-04 21:26:08 +01:00
|
|
|
|
2009-02-28 02:23:00 +01:00
|
|
|
ActionView::Base.cache_template_loading = true
|
2010-05-25 19:45:45 +02:00
|
|
|
FIXTURE_LOAD_PATH = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures'))
|
2009-02-04 21:26:08 +01:00
|
|
|
ActionMailer::Base.template_root = FIXTURE_LOAD_PATH
|
2007-02-10 00:12:31 +01:00
|
|
|
|
|
|
|
class MockSMTP
|
|
|
|
def self.deliveries
|
|
|
|
@@deliveries
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
@@deliveries = []
|
|
|
|
end
|
|
|
|
|
|
|
|
def sendmail(mail, from, to)
|
|
|
|
@@deliveries << [mail, from, to]
|
|
|
|
end
|
2008-11-24 22:53:39 +01:00
|
|
|
|
|
|
|
def start(*args)
|
|
|
|
yield self
|
|
|
|
end
|
2007-02-10 00:12:31 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
class Net::SMTP
|
2008-11-24 22:53:39 +01:00
|
|
|
def self.new(*args)
|
|
|
|
MockSMTP.new
|
2007-02-10 00:12:31 +01:00
|
|
|
end
|
|
|
|
end
|
2007-12-21 08:48:59 +01:00
|
|
|
|
2008-09-07 07:54:05 +02:00
|
|
|
def uses_gem(gem_name, test_name, version = '> 0')
|
|
|
|
gem gem_name.to_s, version
|
|
|
|
require gem_name.to_s
|
2007-12-21 08:48:59 +01:00
|
|
|
yield
|
2008-09-07 07:54:05 +02:00
|
|
|
rescue LoadError
|
|
|
|
$stderr.puts "Skipping #{test_name} tests. `gem install #{gem_name}` and try again."
|
|
|
|
end
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def set_delivery_method(delivery_method)
|
|
|
|
@old_delivery_method = ActionMailer::Base.delivery_method
|
|
|
|
ActionMailer::Base.delivery_method = delivery_method
|
|
|
|
end
|
|
|
|
|
|
|
|
def restore_delivery_method
|
|
|
|
ActionMailer::Base.delivery_method = @old_delivery_method
|
|
|
|
end
|