diff options
author | Carl Lerche <carllerche@mac.com> | 2009-09-01 12:19:09 -0700 |
---|---|---|
committer | Carl Lerche <carllerche@mac.com> | 2009-09-01 12:19:09 -0700 |
commit | 016b1d3596ce12367edac8bb442f5c630a453ecf (patch) | |
tree | 49435918ebb372f617c3cc95bc495f6dd5c12d24 /actionpack/test/new_base | |
parent | 22d5e3d89d619acb9179dfcdd33f1afaee9567ca (diff) | |
parent | da636809daca9c338200811d3590e446f57c8e81 (diff) | |
download | rails-016b1d3596ce12367edac8bb442f5c630a453ecf.tar.gz rails-016b1d3596ce12367edac8bb442f5c630a453ecf.tar.bz2 rails-016b1d3596ce12367edac8bb442f5c630a453ecf.zip |
Merge branch 'master' of git@github.com:rails/rails
Diffstat (limited to 'actionpack/test/new_base')
-rw-r--r-- | actionpack/test/new_base/test_helper.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/test/new_base/test_helper.rb b/actionpack/test/new_base/test_helper.rb index b7ccd3db8d..0833e1a11d 100644 --- a/actionpack/test/new_base/test_helper.rb +++ b/actionpack/test/new_base/test_helper.rb @@ -2,6 +2,10 @@ $:.unshift(File.dirname(__FILE__) + '/../../lib') $:.unshift(File.dirname(__FILE__) + '/../../../activesupport/lib') $:.unshift(File.dirname(__FILE__) + '/../lib') +require 'rubygems' +gem "rack", "~> 1.0.0" +gem "rack-test", "~> 0.4.2" + require 'test/unit' require 'active_support' require 'active_support/test_case' |