Railties test helpers need to activate rack gem

This commit is contained in:
Joshua Peek 2009-09-01 10:05:17 -05:00
parent cc1efe7e5a
commit ad49895fe8
3 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,9 @@
ORIG_ARGV = ARGV.dup
require 'rubygems'
gem 'rack', '~> 1.0.0'
gem 'rack-test', '~> 0.4.2'
$:.unshift File.dirname(__FILE__) + "/../../activesupport/lib"
$:.unshift File.dirname(__FILE__) + "/../../activerecord/lib"
$:.unshift File.dirname(__FILE__) + "/../../actionpack/lib"
@ -9,7 +13,6 @@ $:.unshift File.dirname(__FILE__) + "/../lib"
$:.unshift File.dirname(__FILE__) + "/../builtin/rails_info"
require 'stringio'
require 'rubygems'
require 'test/unit'
require 'active_support'

View File

@ -5,6 +5,9 @@
RAILS_ROOT = File.join(File.dirname(__FILE__), "root")
RAILS_FRAMEWORK_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '..'))
require 'rubygems'
gem 'rack', '~> 1.0.0'
require "test/unit"
# We are purposely avoiding adding things to the load path to catch bugs that only happen in the genuine article
require File.join(RAILS_FRAMEWORK_ROOT, 'activesupport', 'lib', 'active_support', 'testing', 'isolation')

View File

@ -3,6 +3,9 @@ $:.unshift File.dirname(__FILE__) + "/../builtin/rails_info"
$:.unshift File.dirname(__FILE__) + "/../../activesupport/lib"
$:.unshift File.dirname(__FILE__) + "/../../actionpack/lib"
require 'rubygems'
gem 'rack', '~> 1.0.0'
require 'test/unit'
require 'active_support'
require 'active_support/test_case'