133c21b801
Update to Rails 2.3.1. (Actually, not quite. Doesn't look like 2.3.1 will be released today, but I REALLY want to push these bugfixes out.) Removed bundled Rack (Rails 2.3.1 comes bundled with Rack 1.0). Add config.action_view.cache_template_loading = true to production environment. Fix FastCGI bug (http://rubyforge.org/tracker/index.php?func=detail&aid=24191&group_id=186&atid=783). Fix WikiWords bug (http://rubyforge.org/pipermail/instiki-users/2009-February/001181.html).
66 lines
1.6 KiB
Ruby
66 lines
1.6 KiB
Ruby
require 'rubygems'
|
|
require 'test/unit'
|
|
|
|
gem 'mocha', '>= 0.9.5'
|
|
require 'mocha'
|
|
|
|
$:.unshift "#{File.dirname(__FILE__)}/../lib"
|
|
$:.unshift "#{File.dirname(__FILE__)}/../../activesupport/lib"
|
|
$:.unshift "#{File.dirname(__FILE__)}/../../actionpack/lib"
|
|
require 'action_mailer'
|
|
require 'action_mailer/test_case'
|
|
|
|
# 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 }
|
|
|
|
$:.unshift "#{File.dirname(__FILE__)}/fixtures/helpers"
|
|
|
|
ActionView::Base.cache_template_loading = true
|
|
FIXTURE_LOAD_PATH = File.join(File.dirname(__FILE__), 'fixtures')
|
|
ActionMailer::Base.template_root = FIXTURE_LOAD_PATH
|
|
|
|
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 uses_gem(gem_name, test_name, version = '> 0')
|
|
gem gem_name.to_s, version
|
|
require gem_name.to_s
|
|
yield
|
|
rescue LoadError
|
|
$stderr.puts "Skipping #{test_name} tests. `gem install #{gem_name}` and try again."
|
|
end
|
|
|
|
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
|