Sha256: 4afa13560ec09db3a8af56ccc326b9d85e24ca889830ea20a62ca5f237050e28
Contents?: true
Size: 762 Bytes
Versions: 1
Compression:
Stored size: 762 Bytes
Contents
RSpec::Matchers.define :ensure_valid_credit_card_format_of do |attribute| match do |model| model.send("#{attribute}=", "9999") model.valid? if model.errors.has_key?(attribute) model.errors[attribute].include?(I18n.t("active_validation.errors.messages.credit_card")) end end failure_message do |model| I18n.t( "active_validation.errors.matchers.ensure_valid_credit_card_format_of.failure_message_for_should", attr: attribute.inspect, model: model.class.name ) end failure_message_when_negated do |model| I18n.t( "active_validation.errors.matchers.ensure_valid_credit_card_format_of.failure_message_for_should_not", attr: attribute.inspect, model: model.class.name ) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
active_validation-3.0.0 | lib/active_validation/matchers/ensure_valid_credit_card_format_of.rb |