thoughtbot--shoulda-matchers/lib/shoulda/matchers/active_model/allow_value_matcher/successful_setting.rb

15 lines
234 B
Ruby

module Shoulda
module Matchers
module ActiveModel
class AllowValueMatcher
# @private
class SuccessfulSetting
def successful?
true
end
end
end
end
end
end