Fix for CI server. Dependent on RAILS_ENV=development

This commit is contained in:
Arun Agrawal
2011-06-06 16:13:22 +05:30
parent 077ffe0287
commit e909fa4112

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