# File lib/shoulda/active_record/macros.rb, line 334
334:       def should_belong_to(*associations)
335:         ::ActiveSupport::Deprecation.warn("use: should belong_to")
336:         dependent = get_options!(associations, :dependent)
337:         associations.each do |association|
338:           should belong_to(association).dependent(dependent)
339:         end
340:       end