aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-11-09 15:11:55 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-11-09 15:11:55 +0000
commit5c48a89a7f6f42391522a9ddaacee52a1843db5f (patch)
treea69805bbf1b082b73e21181a145d2360d653b0fd /railties/lib
parent6422f8b4633b773733ff0f2c4785979e4c515552 (diff)
downloadrails-5c48a89a7f6f42391522a9ddaacee52a1843db5f.tar.gz
rails-5c48a89a7f6f42391522a9ddaacee52a1843db5f.tar.bz2
rails-5c48a89a7f6f42391522a9ddaacee52a1843db5f.zip
Force RAILS_ENV to be "test" when running tests, so that ENV["RAILS_ENV"] = "production" in config/environment.rb doesnt wreck havok [DHH] (closes #2660)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2955 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/test_help.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/railties/lib/test_help.rb b/railties/lib/test_help.rb
index 3f3cab8a95..9238d1e244 100644
--- a/railties/lib/test_help.rb
+++ b/railties/lib/test_help.rb
@@ -1,5 +1,9 @@
require 'application'
+# Make double-sure the RAILS_ENV is set to test,
+# so fixtures are loaded to the right database
+silence_warnings { RAILS_ENV = "test" }
+
require 'test/unit'
require 'active_record/fixtures'
require 'action_controller/test_process'