# File lib/shoulda/active_record/macros.rb, line 194 194: def should_ensure_length_at_least(attribute, min_length, opts = {}) 195: short_message = get_options!([opts], :short_message) 196: 197: matcher = ensure_length_of(attribute). 198: is_at_least(min_length). 199: with_short_message(short_message) 200: 201: should matcher.description do 202: assert_accepts matcher, subject 203: end 204: end