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