# File lib/shoulda/active_record/macros.rb, line 83 83: def should_allow_mass_assignment_of(*attributes) 84: get_options!(attributes) 85: 86: attributes.each do |attribute| 87: matcher = allow_mass_assignment_of(attribute) 88: should matcher.description do 89: assert_accepts matcher, subject 90: end 91: end 92: end