diff options
author | Yehuda Katz <wycats@gmail.com> | 2009-09-01 19:37:49 -0700 |
---|---|---|
committer | Yehuda Katz <wycats@gmail.com> | 2009-09-01 19:37:49 -0700 |
commit | 847907d7531331e4b8bc1b8bd80352f87b45ad3a (patch) | |
tree | 62f58a593226212ad1d97a093a196292dd0ba11d | |
parent | 66a4585f8830d8f37e62a63df3d095b6284b2a35 (diff) | |
download | rails-847907d7531331e4b8bc1b8bd80352f87b45ad3a.tar.gz rails-847907d7531331e4b8bc1b8bd80352f87b45ad3a.tar.bz2 rails-847907d7531331e4b8bc1b8bd80352f87b45ad3a.zip |
Make Sam Ruby's test suite happy
-rw-r--r-- | railties/lib/test_help.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/railties/lib/test_help.rb b/railties/lib/test_help.rb index 4318203a42..53f28264e8 100644 --- a/railties/lib/test_help.rb +++ b/railties/lib/test_help.rb @@ -2,6 +2,10 @@ # so fixtures are loaded to the right database silence_warnings { RAILS_ENV = "test" } +require 'rubygems' +gem "rack", "~> 1.0.0" +gem "rack-test", "~> 0.4.2" + require 'test/unit' require 'active_support/core_ext/kernel/requires' require 'action_controller/testing/test_case' |