Sha256: 1952994c6256c02a14c03c088ec9cac82afd770ab79bf55d10353a92a09527b7
Contents?: true
Size: 568 Bytes
Versions: 4
Compression:
Stored size: 568 Bytes
Contents
RSpec::Matchers.define :ensure_valid_url_format_of do |attribute| root = 'missing_validators.matchers.ensure_valid_url_format_of' match do |model| model.send("#{attribute}=", ' - ') model.valid? if model.errors.to_hash.key?(attribute) model.errors[attribute].include?(I18n.t('errors.messages.url')) end end failure_message do |model| I18n.t("#{root}.failure_message_for_should", model: model.class) end failure_message_when_negated do |model| I18n.t("#{root}.failure_message_for_should_not", model: model.class) end end
Version data entries
4 entries across 4 versions & 1 rubygems