aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/post.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-22 20:05:42 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-22 20:05:42 +0000
commit34f9d30e399050e776263441ee1d4415d0b2c254 (patch)
tree104acd17ac26f01436de6149e374ed9b43205e06 /activerecord/test/fixtures/post.rb
parentea8f3f0a3765883c993cdd1c28ae958f097d2632 (diff)
downloadrails-34f9d30e399050e776263441ee1d4415d0b2c254.tar.gz
rails-34f9d30e399050e776263441ee1d4415d0b2c254.tar.bz2
rails-34f9d30e399050e776263441ee1d4415d0b2c254.zip
Added support for calling constrained class methods on has_many and has_and_belongs_to_many collections #1764 [Tobias Luetke]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1894 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures/post.rb')
-rw-r--r--activerecord/test/fixtures/post.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/test/fixtures/post.rb b/activerecord/test/fixtures/post.rb
index e347d94fb8..f5adac41dc 100644
--- a/activerecord/test/fixtures/post.rb
+++ b/activerecord/test/fixtures/post.rb
@@ -5,6 +5,10 @@ class Post < ActiveRecord::Base
has_many :special_comments, :class_name => "SpecialComment"
has_and_belongs_to_many :categories
has_and_belongs_to_many :special_categories, :join_table => "categories_posts"
+
+ def self.what_are_you
+ 'a post...'
+ end
end
class SpecialPost < Post; end;