aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/fixtures')
-rwxr-xr-xactiverecord/test/fixtures/reply.rb4
-rwxr-xr-xactiverecord/test/fixtures/topic.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/activerecord/test/fixtures/reply.rb b/activerecord/test/fixtures/reply.rb
index 127f2052f3..d0ec895127 100755
--- a/activerecord/test/fixtures/reply.rb
+++ b/activerecord/test/fixtures/reply.rb
@@ -1,5 +1,6 @@
class Reply < Topic
belongs_to :topic, :foreign_key => "parent_id", :counter_cache => true
+ has_many :silly_replies, :dependent => true, :foreign_key => "parent_id"
validate :errors_on_empty_content
validate_on_create :title_is_wrong_create
@@ -27,4 +28,7 @@ class Reply < Topic
def validate_on_update
errors.add("title", "is Wrong Update") if attribute_present?("title") && title == "Wrong Update"
end
+end
+
+class SillyReply < Reply
end \ No newline at end of file
diff --git a/activerecord/test/fixtures/topic.rb b/activerecord/test/fixtures/topic.rb
index 55c94e9e88..60022aa46b 100755
--- a/activerecord/test/fixtures/topic.rb
+++ b/activerecord/test/fixtures/topic.rb
@@ -1,5 +1,5 @@
class Topic < ActiveRecord::Base
- has_many :replies, :foreign_key => "parent_id"
+ has_many :replies, :dependent => true, :foreign_key => "parent_id"
serialize :content
before_create :default_written_on