aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/comment.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/fixtures/comment.rb')
-rw-r--r--activerecord/test/fixtures/comment.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/activerecord/test/fixtures/comment.rb b/activerecord/test/fixtures/comment.rb
deleted file mode 100644
index 3eab263fa4..0000000000
--- a/activerecord/test/fixtures/comment.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-class Comment < ActiveRecord::Base
- belongs_to :post
-
- def self.what_are_you
- 'a comment...'
- end
-
- def self.search_by_type(q)
- self.find(:all, :conditions => ["#{QUOTED_TYPE} = ?", q])
- end
-end
-
-class SpecialComment < Comment
- def self.what_are_you
- 'a special comment...'
- end
-end
-
-class VerySpecialComment < Comment
- def self.what_are_you
- 'a very special comment...'
- end
-end \ No newline at end of file