aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/batches_test.rb
diff options
context:
space:
mode:
authorAkshay <akshaymohite31@yahoo.com>2016-02-17 11:25:38 +0530
committerAkshay <akshaymohite31@yahoo.com>2016-02-17 11:26:03 +0530
commitb13a00ede657aea3673cecc2e40f4b3d26d51e79 (patch)
treec9984cd4a2216cb928784ea9e54127e061c316d0 /activerecord/test/cases/batches_test.rb
parentc60fb74dc6ea373bfe3d04731a2d2b6ba641f850 (diff)
downloadrails-b13a00ede657aea3673cecc2e40f4b3d26d51e79.tar.gz
rails-b13a00ede657aea3673cecc2e40f4b3d26d51e79.tar.bz2
rails-b13a00ede657aea3673cecc2e40f4b3d26d51e79.zip
Fix semantics of test names for finish option in batches_test
- The change was added in #23099
Diffstat (limited to 'activerecord/test/cases/batches_test.rb')
-rw-r--r--activerecord/test/cases/batches_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/cases/batches_test.rb b/activerecord/test/cases/batches_test.rb
index 3602ee7ba2..84aac3e721 100644
--- a/activerecord/test/cases/batches_test.rb
+++ b/activerecord/test/cases/batches_test.rb
@@ -108,7 +108,7 @@ class EachTest < ActiveRecord::TestCase
end
end
- def test_find_in_batches_should_finish_the_end_option
+ def test_find_in_batches_should_end_at_the_finish_option
assert_queries(6) do
Post.find_in_batches(batch_size: 1, finish: 5) do |batch|
assert_kind_of Array, batch
@@ -316,7 +316,7 @@ class EachTest < ActiveRecord::TestCase
end
end
- def test_in_batches_should_finish_the_end_option
+ def test_in_batches_should_end_at_the_finish_option
post = Post.order('id DESC').where('id <= ?', 5).first
assert_queries(7) do
relation = Post.in_batches(of: 1, finish: 5, load: true).reverse_each.first