diff options
author | Jon Leighton <j@jonathanleighton.com> | 2012-04-26 06:11:00 -0700 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2012-04-26 06:11:00 -0700 |
commit | 8cd14c0bc9f9429f03d1181912355d2f48b98157 (patch) | |
tree | 69f3b385b3aaac6f67b06b96a8a5edffd841e586 /railties | |
parent | 2f0c8c52e66f1a2a3d1c00efc207f227124e96c2 (diff) | |
parent | 627f89b189734d7c8915a74f3f57a232d3d4d0d9 (diff) | |
download | rails-8cd14c0bc9f9429f03d1181912355d2f48b98157.tar.gz rails-8cd14c0bc9f9429f03d1181912355d2f48b98157.tar.bz2 rails-8cd14c0bc9f9429f03d1181912355d2f48b98157.zip |
Merge pull request #5995 from kennyj/fix_5847-3
Fix #5847 and #4045. Load AR::Base before loading an application model.
Diffstat (limited to 'railties')
-rw-r--r-- | railties/test/application/rake_test.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/railties/test/application/rake_test.rb b/railties/test/application/rake_test.rb index 27d521485c..8351ab3930 100644 --- a/railties/test/application/rake_test.rb +++ b/railties/test/application/rake_test.rb @@ -167,5 +167,27 @@ module ApplicationTests end assert !File.exists?(File.join(app_path, 'db', 'schema_cache.dump')) end + + def test_load_activerecord_base_when_we_use_observers + Dir.chdir(app_path) do + `bundle exec rails g model user; + bundle exec rake db:migrate; + bundle exec rails g observer user;` + + add_to_config "config.active_record.observers = :user_observer" + + assert_equal "0", `bundle exec rails r "puts User.count"`.strip + + app_file "lib/tasks/count_user.rake", <<-RUBY + namespace :user do + task :count => :environment do + puts User.count + end + end + RUBY + + assert_equal "0", `bundle exec rake user:count`.strip + end + end end end |