aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/comment.rb
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2013-01-24 18:07:51 +0900
committerAkira Matsuda <ronnie@dio.jp>2013-01-24 18:40:59 +0900
commitf228ab5574e995f8188783562bf2cdd98c9138b4 (patch)
treef5b3d9cd4ee6d0db79cb11158acd801011a49755 /activerecord/test/models/comment.rb
parent4bdcd7a6549aa32949d94cf24ed7c1c9a9c09f07 (diff)
downloadrails-f228ab5574e995f8188783562bf2cdd98c9138b4.tar.gz
rails-f228ab5574e995f8188783562bf2cdd98c9138b4.tar.bz2
rails-f228ab5574e995f8188783562bf2cdd98c9138b4.zip
Goodbye there, very special rubbish!
Diffstat (limited to 'activerecord/test/models/comment.rb')
-rw-r--r--activerecord/test/models/comment.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/activerecord/test/models/comment.rb b/activerecord/test/models/comment.rb
index 4b2015fe01..ede5fbd0c6 100644
--- a/activerecord/test/models/comment.rb
+++ b/activerecord/test/models/comment.rb
@@ -29,16 +29,10 @@ class Comment < ActiveRecord::Base
end
class SpecialComment < Comment
- def self.what_are_you
- 'a special comment...'
- end
end
class SubSpecialComment < SpecialComment
end
class VerySpecialComment < Comment
- def self.what_are_you
- 'a very special comment...'
- end
end