Sha256: 6a18d8380de1e8a299c5d81fdf250655fab9c33d16e5798e66a9c545b2c27b70
Contents?: true
Size: 604 Bytes
Versions: 1
Compression:
Stored size: 604 Bytes
Contents
RSpec::Matchers.define :ensure_valid_ip_address_format_of do |attribute| root = 'missing_validators.matchers.ensure_valid_ip_address_format_of' match do |model| model.send("#{attribute}=", 'invalid.ip.address') model.valid? if model.errors.to_hash.key?(attribute) model.errors[attribute].include?(I18n.t('errors.messages.ip_address')) 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
missing_validators-2.3.0 | lib/missing_validators/matchers/ensure_valid_ip_address_format_of.rb |