aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/fixtures')
-rw-r--r--activerecord/test/fixtures/project.rb6
-rwxr-xr-xactiverecord/test/fixtures/topic.rb2
2 files changed, 7 insertions, 1 deletions
diff --git a/activerecord/test/fixtures/project.rb b/activerecord/test/fixtures/project.rb
index 1ccf39d7cf..fddea7b61c 100644
--- a/activerecord/test/fixtures/project.rb
+++ b/activerecord/test/fixtures/project.rb
@@ -1,4 +1,10 @@
class Project < ActiveRecord::Base
has_and_belongs_to_many :developers, :uniq => true
has_and_belongs_to_many :developers_named_david, :class_name => "Developer", :conditions => "name = 'David'", :uniq => true
+end
+
+class SpecialProject < Project
+ def hello_world
+ "hello there!"
+ end
end \ No newline at end of file
diff --git a/activerecord/test/fixtures/topic.rb b/activerecord/test/fixtures/topic.rb
index 60022aa46b..4c46122450 100755
--- a/activerecord/test/fixtures/topic.rb
+++ b/activerecord/test/fixtures/topic.rb
@@ -3,7 +3,7 @@ class Topic < ActiveRecord::Base
serialize :content
before_create :default_written_on
- before_destroy :destroy_children #'self.class.delete_all "parent_id = #{id}"'
+ before_destroy :destroy_children
def parent
self.class.find(parent_id)