aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-08-13 22:15:15 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2010-08-13 22:26:44 -0300
commit1590377886820e00b1a786616518a32f3b61ec0f (patch)
tree38122e46b9e8770547bd49e6b8bba74f65226910 /activerecord
parent27fb88aa22d7887138ec02f34eeb01f78043642d (diff)
downloadrails-1590377886820e00b1a786616518a32f3b61ec0f.tar.gz
rails-1590377886820e00b1a786616518a32f3b61ec0f.tar.bz2
rails-1590377886820e00b1a786616518a32f3b61ec0f.zip
Makes AR use AMo to_key implementation
[#5249]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/attribute_methods/primary_key.rb6
-rw-r--r--activerecord/test/cases/primary_keys_test.rb2
2 files changed, 1 insertions, 7 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/primary_key.rb b/activerecord/lib/active_record/attribute_methods/primary_key.rb
index 82d94b848a..365fdeb55a 100644
--- a/activerecord/lib/active_record/attribute_methods/primary_key.rb
+++ b/activerecord/lib/active_record/attribute_methods/primary_key.rb
@@ -3,12 +3,6 @@ module ActiveRecord
module PrimaryKey
extend ActiveSupport::Concern
- # Returns this record's primary key value wrapped in an Array
- # or nil if the record is a new_record?
- def to_key
- new_record? ? nil : [ id ]
- end
-
module ClassMethods
# Defines the primary key field -- can be overridden in subclasses. Overwriting will negate any effect of the
# primary_key_prefix_type setting, though.
diff --git a/activerecord/test/cases/primary_keys_test.rb b/activerecord/test/cases/primary_keys_test.rb
index 1e44237e0a..5cdcb05902 100644
--- a/activerecord/test/cases/primary_keys_test.rb
+++ b/activerecord/test/cases/primary_keys_test.rb
@@ -26,7 +26,7 @@ class PrimaryKeysTest < ActiveRecord::TestCase
def test_to_key_with_primary_key_after_destroy
topic = Topic.find(1)
topic.destroy
- assert_equal [1], topic.to_key
+ assert_equal nil, topic.to_key
end
def test_integer_key