# File lib/shoulda/active_record/macros.rb, line 100
100:       def should_not_allow_mass_assignment_of(*attributes)
101:         ::ActiveSupport::Deprecation.warn("use: should_not allow_mass_assignment_of")
102:         get_options!(attributes)
103: 
104:         attributes.each do |attribute|
105:           should_not allow_mass_assignment_of(attribute)
106:         end
107:       end