debian-mirror-gitlab/spec/support/matchers/is_within.rb

10 lines
239 B
Ruby
Raw Normal View History

2015-09-11 14:41:01 +05:30
# Extend shoulda-matchers
module Shoulda::Matchers::ActiveModel
class ValidateLengthOfMatcher
# Shortcut for is_at_least and is_at_most
def is_within(range)
is_at_least(range.min) && is_at_most(range.max)
end
end
end