diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-08-15 14:13:11 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-08-15 14:13:11 +0200 |
commit | 78f2ee50f00d670f6a075ca4325f8bcf4cf2d24b (patch) | |
tree | 933fc5d744724abdd56f9a52812909c0712b9f72 /activerecord | |
parent | c595a4f69f4b60441537b31b5d029efc6c9d6e61 (diff) | |
download | rails-78f2ee50f00d670f6a075ca4325f8bcf4cf2d24b.tar.gz rails-78f2ee50f00d670f6a075ca4325f8bcf4cf2d24b.tar.bz2 rails-78f2ee50f00d670f6a075ca4325f8bcf4cf2d24b.zip |
prefer `has_attribute?` over `attributes.key?`.
Follow up to the discussion on #16505.
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/cases/attribute_methods_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |