module Shoulda # :nodoc:
module ActiveRecord # :nodoc:
module Matchers
# Ensures that the model cannot be saved the given attribute is not
# accepted.
#
# Options:
# * with_message - value the test expects to find in
# errors.on(:attribute). Regexp or string. Defaults to the
# translation for :accepted.
#
# Example:
# it { should validate_acceptance_of(:eula) }
#
def validate_acceptance_of(attr)
ValidateAcceptanceOfMatcher.new(attr)
end
class ValidateAcceptanceOfMatcher < ValidationMatcher # :nodoc:
def with_message(message)
@expected_message = message if message
self
end
def matches?(subject)
super(subject)
@expected_message ||= :accepted
disallows_value_of(false, @expected_message)
end
def description
"require #{@attribute} to be accepted"
end
end
end
end
end