From 672ce11d684e1211836ca22cf5b0ca6f626f1719 Mon Sep 17 00:00:00 2001 From: David Chelimsky Date: Wed, 22 Sep 2010 16:24:35 -0500 Subject: only abort in test_help in production env MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: José Valim --- railties/lib/rails/test_help.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'railties/lib/rails/test_help.rb') diff --git a/railties/lib/rails/test_help.rb b/railties/lib/rails/test_help.rb index ec5e4a357c..3f90e786c1 100644 --- a/railties/lib/rails/test_help.rb +++ b/railties/lib/rails/test_help.rb @@ -1,6 +1,6 @@ -# Make double-sure the RAILS_ENV is set to test, -# so fixtures are loaded to the right database -abort("Abort testing: Your Rails environment is not running in test mode!") unless Rails.env.test? +# Make double-sure the RAILS_ENV is not set to production, +# so fixtures aren't loaded into that environment +abort("Abort testing: Your Rails environment is not running in test mode!") if Rails.env.production? require 'test/unit' require 'active_support/core_ext/kernel/requires' -- cgit v1.2.3