From 78f2ee50f00d670f6a075ca4325f8bcf4cf2d24b Mon Sep 17 00:00:00 2001 From: Yves Senn Date: Fri, 15 Aug 2014 14:13:11 +0200 Subject: prefer `has_attribute?` over `attributes.key?`. Follow up to the discussion on #16505. --- activerecord/test/cases/attribute_methods_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activerecord') diff --git a/activerecord/test/cases/attribute_methods_test.rb b/activerecord/test/cases/attribute_methods_test.rb index ab67cf4085..68aa6b8caf 100644 --- a/activerecord/test/cases/attribute_methods_test.rb +++ b/activerecord/test/cases/attribute_methods_test.rb @@ -263,7 +263,7 @@ class AttributeMethodsTest < ActiveRecord::TestCase end assert_equal klass.column_names, klass.new.attributes.keys - assert_not klass.new.attributes.key?('id') + assert_not klass.new.has_attributes?('id') end def test_hashes_not_mangled -- cgit v1.2.3