]> git.openstreetmap.org Git - rails.git/commitdiff
Detect test environment correctly
authorTom Hughes <tom@compton.nu>
Tue, 6 Aug 2013 17:50:00 +0000 (18:50 +0100)
committerTom Hughes <tom@compton.nu>
Sat, 21 Sep 2013 11:03:53 +0000 (12:03 +0100)
config/preinitializer.rb

index 377e6bad4a6a13ac33095926085eccefccc925fb..ec05a6070b9929c8004d83993a293aa250c5ccdc 100644 (file)
@@ -1,6 +1,11 @@
 require 'yaml'
 
-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|