X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c9fa49c99485b0ba1242c6d13e12df9ab1532987..05fb8b3e00f1c9e3c3a9d28d0f4971e985cdce5a:/config/preinitializer.rb diff --git a/config/preinitializer.rb b/config/preinitializer.rb index 1cc3f62c7..de8367e9f 100644 --- a/config/preinitializer.rb +++ b/config/preinitializer.rb @@ -1,16 +1,19 @@ -require 'yaml' +require "yaml" -config = YAML.load_file(File.expand_path("../application.yml", __FILE__)) -env = ENV['RAILS_ENV'] || 'development' +if defined?(Rake.application) && Rake.application.top_level_tasks.grep(/^(default$|test(:|$))/).any? + env = "test" +else + env = ENV["RAILS_ENV"] || "development" +end + +config = YAML.load_file(File.expand_path(env == "test" ? "../example.application.yml" : "../application.yml", __FILE__)) -ENV.each do |key,value| +ENV.each do |key, value| if key.match(/^OSM_(.*)$/) Object.const_set(Regexp.last_match(1).upcase, value) end end -config[env].each do |key,value| - unless Object.const_defined?(key.upcase) - Object.const_set(key.upcase, value) - end +config[env].each do |key, value| + Object.const_set(key.upcase, value) unless Object.const_defined?(key.upcase) end