Sha256: 962f1e9ee4546b681318a56568808ab860352a92686e04f0146a0a0239e8d201

Contents?: true

Size: 599 Bytes

Versions: 2

Compression:

Stored size: 599 Bytes

Contents

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

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

  failure_message do |model|
    I18n.t 'missing_validators.matchers.ensure_valid_url_format_of.failure_message_for_should',
      model: model.class
  end

  failure_message_when_negated do |model|
    I18n.t 'missing_validators.matchers.ensure_valid_url_format_of.failure_message_for_should_not',
      model: model.class
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
missing_validators-1.1.0 lib/missing_validators/matchers/ensure_valid_url_format_of.rb
missing_validators-1.0.1 lib/missing_validators/matchers/ensure_valid_url_format_of.rb