diff options
author | Emilio Tagua <miloops@gmail.com> | 2010-03-29 11:24:35 -0300 |
---|---|---|
committer | Emilio Tagua <miloops@gmail.com> | 2010-03-29 11:30:06 -0300 |
commit | 53ddbfc460f5a54d5b81e7bfbc1c5828f90488c1 (patch) | |
tree | 5b516ace4c533812de11501423b73b3e9ff35688 /activerecord/test | |
parent | 5f7bc47303933ec67700f6390c98d889f6d9b0d1 (diff) | |
download | rails-53ddbfc460f5a54d5b81e7bfbc1c5828f90488c1.tar.gz rails-53ddbfc460f5a54d5b81e7bfbc1c5828f90488c1.tar.bz2 rails-53ddbfc460f5a54d5b81e7bfbc1c5828f90488c1.zip |
Warn scoped order and limit are ignored. [#4123 state:resolved]
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/batches_test.rb | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/activerecord/test/cases/batches_test.rb b/activerecord/test/cases/batches_test.rb index e417d8a803..83deabb5b7 100644 --- a/activerecord/test/cases/batches_test.rb +++ b/activerecord/test/cases/batches_test.rb @@ -8,7 +8,7 @@ class EachTest < ActiveRecord::TestCase @posts = Post.order("id asc") @total = Post.count end - + def test_each_should_excecute_one_query_per_batch assert_queries(Post.count + 1) do Post.find_each(:batch_size => 1) do |post| @@ -28,7 +28,17 @@ class EachTest < ActiveRecord::TestCase Post.find_each(:limit => 1) { |post| post } end end - + + def test_warn_if_limit_scope_is_set + ActiveRecord::Base.logger.expects(:warn) + Post.limit(1).find_each { |post| post } + end + + def test_warn_if_order_scope_is_set + ActiveRecord::Base.logger.expects(:warn) + Post.order("title").find_each { |post| post } + end + def test_find_in_batches_should_return_batches assert_queries(Post.count + 1) do Post.find_in_batches(:batch_size => 1) do |batch| @@ -58,4 +68,4 @@ class EachTest < ActiveRecord::TestCase Post.find_in_batches(:batch_size => post_count + 1) {|batch| assert_kind_of Array, batch } end end -end
\ No newline at end of file +end |