aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/lint.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-08-15 11:29:15 -0300
committerJosé Valim <jose.valim@gmail.com>2010-08-15 11:29:15 -0300
commitd0cf212cb5a02db1b3df85e1a337ea1fc99d9b3b (patch)
treec76b4ab32010d486e0ddb4a9c259619d8c23ccc3 /activemodel/lib/active_model/lint.rb
parentfd9f3ad36b7ad116dfd902db5b23e3178411dc73 (diff)
downloadrails-d0cf212cb5a02db1b3df85e1a337ea1fc99d9b3b.tar.gz
rails-d0cf212cb5a02db1b3df85e1a337ea1fc99d9b3b.tar.bz2
rails-d0cf212cb5a02db1b3df85e1a337ea1fc99d9b3b.zip
to_key should return all exists keys (if any exists), regardless if the object is persisted or not. If you need it to reflect persistance, you should use to_param.
Diffstat (limited to 'activemodel/lib/active_model/lint.rb')
-rw-r--r--activemodel/lib/active_model/lint.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activemodel/lib/active_model/lint.rb b/activemodel/lib/active_model/lint.rb
index 26eb4a3c41..d7a6da48ca 100644
--- a/activemodel/lib/active_model/lint.rb
+++ b/activemodel/lib/active_model/lint.rb
@@ -38,6 +38,7 @@ module ActiveModel
# not persisted?, then to_param should always return nil.
def test_to_param
assert model.respond_to?(:to_param), "The model should respond to to_param"
+ def model.to_key() [1] end
def model.persisted?() false end
assert model.to_param.nil?
end