# File lib/shoulda/active_record/macros.rb, line 37
37:       def should_validate_presence_of(*attributes)
38:         ::ActiveSupport::Deprecation.warn("use: should validate_presence_of")
39:         message = get_options!(attributes, :message)
40: 
41:         attributes.each do |attribute|
42:           should validate_presence_of(attribute).with_message(message)
43:         end
44:       end