Add note about polymorphic associations on have_many

[ci skip]
This commit is contained in:
Mauro George 2015-06-17 19:15:52 -03:00 committed by Elliot Winkler
parent ca960e609b
commit 670f154afc
1 changed files with 17 additions and 0 deletions

View File

@ -276,6 +276,23 @@ module Shoulda
# should have_many(:friends)
# end
#
# Note that polymorphic associations are automatically detected and do not
# need any qualifiers:
#
# class Person < ActiveRecord::Base
# has_many :pictures, as: :imageable
# end
#
# # RSpec
# describe Person do
# it { should have_many(:pictures) }
# end
#
# # Test::Unit
# class PersonTest < ActiveSupport::TestCase
# should have_many(:pictures)
# end
#
# #### Qualifiers
#
# ##### conditions