Sha256: 4977a119f6ccbeaae5b1d509a3a37480270d223ed18e1c63592dc9b2dd6c3c61

Contents?: true

Size: 699 Bytes

Versions: 2

Compression:

Stored size: 699 Bytes

Contents

RSpec::Matchers.define :ensure_valid_hex_format_of do |attribute|
  match do |model|
    model.send("#{attribute}=", "#9999999")
    model.valid?

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

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

  failure_message_when_negated do |model|
    I18n.t(
      'flash_validators.matchers.ensure_valid_hex_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
flash_validators-3.0.1 lib/flash_validators/matchers/ensure_valid_hex_format_of.rb
flash_validators-3.0.0 lib/flash_validators/matchers/ensure_valid_hex_format_of.rb