Sha256: de76d4207eaba92c8439dc8b84b08c4f0905b0a050c0a02ce48718318d03b339

Contents?: true

Size: 618 Bytes

Versions: 1

Compression:

Stored size: 618 Bytes

Contents

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

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

  failure_message do |model|
    I18n.t 'flash_validators.matchers.ensure_valid_longitude_format_of.failure_message_for_should',
      model: model.class
  end

  failure_message_when_negated do |model|
    I18n.t 'flash_validators.matchers.ensure_valid_longitude_format_of.failure_message_for_should_not',
      model: model.class
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
flash_validators-0.0.1 lib/flash_validators/matchers/ensure_valid_longitude_format_of.rb