mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
5a8f25f003
This cleanup aims to fix a build failure: https://travis-ci.org/rails/rails/jobs/3515951/#L482 Since travis always have both ENV vars set to "test", a test is failing where it's expected to output the default env "development", but "test" is the result due to RACK_ENV being set when we expect it to not be. By cleaning this duplication we ensure that changing any of these env variables will pick the right expected value.
18 lines
400 B
Ruby
18 lines
400 B
Ruby
ENV["RAILS_ENV"] ||= "test"
|
|
|
|
require File.expand_path("../../../load_paths", __FILE__)
|
|
|
|
require 'stringio'
|
|
require 'minitest/autorun'
|
|
require 'fileutils'
|
|
|
|
require 'active_support'
|
|
require 'action_controller'
|
|
require 'rails/all'
|
|
|
|
module TestApp
|
|
class Application < Rails::Application
|
|
config.root = File.dirname(__FILE__)
|
|
config.secret_key_base = 'b3c631c314c0bbca50c1b2843150fe33'
|
|
end
|
|
end
|