Sha256: d71d228f6ca7161a2c0bc6a844e904cd8215d6c79231098e82b4858c1bdaf6fa
Contents?: true
Size: 720 Bytes
Versions: 11
Compression:
Stored size: 720 Bytes
Contents
RSpec::Matchers.define :ensure_valid_sedol_format_of do |attribute| match do |model| model.send("#{attribute}=", "1234") model.valid? if model.errors.has_key?(attribute) model.errors[attribute].include?(I18n.t('flash_validators.errors.messages.sedol')) end end failure_message do |model| I18n.t( 'flash_validators.matchers.ensure_valid_sedol_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_sedol_format_of.failure_message_for_should_not', attr: attribute.inspect, model: model.class.name ) end end
Version data entries
11 entries across 11 versions & 1 rubygems