# File lib/shoulda/active_record/macros.rb, line 195
195:       def should_ensure_length_at_least(attribute, min_length, opts = {})
196:         ::ActiveSupport::Deprecation.warn("use: should ensure_length_of.is_at_least")
197:         short_message = get_options!([opts], :short_message)
198: 
199:         should ensure_length_of(attribute).
200:           is_at_least(min_length).
201:           with_short_message(short_message)
202:       end