Sha256: 110ec7b4a9de4cded7b7f8eb167a3f4ebe17ef5d7d215c53782cfe79d2101495

Contents?: true

Size: 706 Bytes

Versions: 2

Compression:

Stored size: 706 Bytes

Contents

RSpec::Matchers.define :ensure_valid_phone_format_of do |attribute|
  match do |model|
    model.send("#{attribute}=", "555-123n")
    model.valid?

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

  failure_message do |model|
    I18n.t(
      'yukonisuru.matchers.ensure_valid_phone_format_of.failure_message_for_should',
      attr: attribute.inspect,
      model: model.class.name
    )
  end

  failure_message_when_negated do |model|
    I18n.t(
      'yukonisuru.matchers.ensure_valid_phone_format_of.failure_message_for_should_not',
      attr: attribute.inspect,
      model: model.class.name
    )
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
yukonisuru-1.0.0 lib/yukonisuru/matchers/ensure_valid_phone_format_of.rb
yukonisuru-0.0.1 lib/yukonisuru/matchers/ensure_valid_phone_format_of.rb