Testing behavior of a CollectionProxy based on :dependent
option, delete method used and assocation type (:has_many
vs :has_many :through
)
class Category < ActiveRecord::Base
has_many :contacts, through: :categorizations
has_many :categorizations, dependent: DEPENDENT
end