class Shoulda::Matchers::ActiveModel::AllowValueMatcher::AttributeSetters

def initialize(allow_value_matcher, values)

def initialize(allow_value_matcher, values)
  @tuples = values.map do |attribute_name, value|
    AttributeSetterAndValidator.new(
      allow_value_matcher,
      attribute_name,
      value,
    )
  end
end