aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models
diff options
context:
space:
mode:
authorJakub Kuźma <qoobaa@gmail.com>2011-12-21 15:28:24 +0100
committerJosé Valim <jose.valim@gmail.com>2011-12-21 21:17:06 +0100
commit2d07c60b684a7082fa5dc052c9f965adcda1cb75 (patch)
treecaf3ac9882e41973883cd94ecef15887b186063f /activerecord/test/models
parent108e34466c57b2b4cce0c5b58239bc99c37a5150 (diff)
downloadrails-2d07c60b684a7082fa5dc052c9f965adcda1cb75.tar.gz
rails-2d07c60b684a7082fa5dc052c9f965adcda1cb75.tar.bz2
rails-2d07c60b684a7082fa5dc052c9f965adcda1cb75.zip
added failing tests for has_many, has_one and belongs_to associations with strict mass assignment sanitizer, fixed build_record to not merge creation_attributes, removed failing nested attributes tests (that feature was broken anyway) #4051
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'activerecord/test/models')
-rw-r--r--activerecord/test/models/person.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/models/person.rb b/activerecord/test/models/person.rb
index 967a3625aa..36eb08d02f 100644
--- a/activerecord/test/models/person.rb
+++ b/activerecord/test/models/person.rb
@@ -54,7 +54,7 @@ class LoosePerson < ActiveRecord::Base
self.table_name = 'people'
self.abstract_class = true
- attr_protected :comments
+ attr_protected :comments, :best_friend_id, :best_friend_of_id
attr_protected :as => :admin
has_one :best_friend, :class_name => 'LoosePerson', :foreign_key => :best_friend_id
@@ -81,4 +81,4 @@ class TightPerson < ActiveRecord::Base
accepts_nested_attributes_for :best_friend, :best_friend_of, :best_friends
end
-class TightDescendant < TightPerson; end \ No newline at end of file
+class TightDescendant < TightPerson; end