1
0
Fork 0
mirror of https://github.com/thoughtbot/shoulda-matchers.git synced 2022-11-09 12:01:38 -05:00

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

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