aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/rake_test.rb
diff options
context:
space:
mode:
authorPaul Nikitochkin <paul.nikitochkin@gmail.com>2013-04-11 13:10:54 +0300
committerPaul Nikitochkin <paul.nikitochkin@gmail.com>2013-04-12 22:24:54 +0300
commita49d93552fce0c7076e83d03fae34dc4198c6b9e (patch)
treeaad2823c008916f615bc74761d4213661863c287 /railties/test/application/rake_test.rb
parent70db38572a70f1b1ae53086873c4ce25cf4d34c7 (diff)
downloadrails-a49d93552fce0c7076e83d03fae34dc4198c6b9e.tar.gz
rails-a49d93552fce0c7076e83d03fae34dc4198c6b9e.tar.bz2
rails-a49d93552fce0c7076e83d03fae34dc4198c6b9e.zip
Added tests for `eager_load` config option to do not eager load for rake tasks if `eager_load` is `true`
Diffstat (limited to 'railties/test/application/rake_test.rb')
-rw-r--r--railties/test/application/rake_test.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/railties/test/application/rake_test.rb b/railties/test/application/rake_test.rb
index eb590da678..fa3ab969ae 100644
--- a/railties/test/application/rake_test.rb
+++ b/railties/test/application/rake_test.rb
@@ -79,6 +79,23 @@ module ApplicationTests
assert_match "Hello world", output
end
+ def test_should_not_eager_load_model_path_for_rake
+ add_to_config <<-RUBY
+ config.eager_load = true
+
+ rake_tasks do
+ task do_nothing: :environment do
+ end
+ end
+ RUBY
+
+ app_file "app/models/hello.rb", <<-RUBY
+ raise 'should not be pre-required for rake even `eager_load=true`'
+ RUBY
+
+ Dir.chdir(app_path){ `rake do_nothing` }
+ end
+
def test_code_statistics_sanity
assert_match "Code LOC: 5 Test LOC: 0 Code to Test Ratio: 1:0.0",
Dir.chdir(app_path){ `rake stats` }