Merge pull request #1504 from arunagw/console_test_for_ci_server

Fix for CI server. Dependent on RAILS_ENV=development
This commit is contained in:
José Valim
2011-06-06 03:52:34 -07:00

View File

@@ -4,10 +4,16 @@ class ConsoleTest < Test::Unit::TestCase
include ActiveSupport::Testing::Isolation
def setup
@prev_rails_env = ENV['RAILS_ENV']
ENV['RAILS_ENV'] = 'development'
build_app
boot_rails
end
def teardown
ENV['RAILS_ENV'] = @prev_rails_env
end
def load_environment(sandbox = false)
require "#{rails_root}/config/environment"
Rails.application.sandbox = sandbox