Sha256: 51821869b3bda8b0d1d727bcc0e8655a9e89d6b93aa2f30049d903e592b8915b

Contents?: true

Size: 594 Bytes

Versions: 2

Compression:

Stored size: 594 Bytes

Contents

RSpec::Matchers.define :ensure_valid_ssn_format_of do |attribute|
  match do |model|
    model.send("#{attribute}=", "555-0s-1234")
    model.valid?

    if model.errors.has_key?(attribute)
      model.errors[attribute].include?(I18n.t('errors.messages.ssn'))
    end
  end

  failure_message do |model|
    I18n.t('flash_validators.matchers.ensure_valid_ssn_format_of.failure_message_for_should', model: model.class)
  end

  failure_message_when_negated do |model|
    I18n.t('flash_validators.matchers.ensure_valid_ssn_format_of.failure_message_for_should_not', model: model.class)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
flash_validators-1.1.0 lib/flash_validators/matchers/ensure_valid_ssn_format_of.rb
flash_validators-1.0.0 lib/flash_validators/matchers/ensure_valid_ssn_format_of.rb