aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/has_many_associations_test.rb
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2012-11-05 13:56:30 +0900
committerAkira Matsuda <ronnie@dio.jp>2012-11-30 01:18:18 +0900
commitde75af7acc5c05c708443de40e78965925165217 (patch)
tree2eb07baa89d145f0d0d66ee51d5fb0e5d62646e6 /activerecord/test/cases/associations/has_many_associations_test.rb
parent80b8df5f3d09205d8f239e9aefd5ed0e0ddfd4a5 (diff)
downloadrails-de75af7acc5c05c708443de40e78965925165217.tar.gz
rails-de75af7acc5c05c708443de40e78965925165217.tar.bz2
rails-de75af7acc5c05c708443de40e78965925165217.zip
Relation.where with no args can be chained with not, like, and not_like
examples: Model.where.not field: nil #=> "SELECT * FROM models WHERE field IS NOT NULL Model.where.like name: 'Jeremy%' #=> "SELECT * FROM models WHERE name LIKE 'Jeremy%' this feature was originally suggested by Jeremy Kemper https://github.com/rails/rails/pull/5950#issuecomment-5591330 Closes #5950
Diffstat (limited to 'activerecord/test/cases/associations/has_many_associations_test.rb')
-rw-r--r--activerecord/test/cases/associations/has_many_associations_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/has_many_associations_test.rb b/activerecord/test/cases/associations/has_many_associations_test.rb
index e5022d49f1..664f636176 100644
--- a/activerecord/test/cases/associations/has_many_associations_test.rb
+++ b/activerecord/test/cases/associations/has_many_associations_test.rb
@@ -271,7 +271,7 @@ class HasManyAssociationsTest < ActiveRecord::TestCase
end
def test_find_with_blank_conditions
- [[], {}, nil, ""].each do |blank|
+ [[], {}, ""].each do |blank|
assert_equal 2, Firm.all.merge!(:order => "id").first.clients.where(blank).to_a.size
end
end