mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
abee034368
Revert some tests to ensure back compatibility
26 lines
647 B
Ruby
26 lines
647 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PersonWithValidator
|
|
include ActiveModel::Validations
|
|
|
|
class PresenceValidator < ActiveModel::EachValidator
|
|
def validate_each(record, attribute, value)
|
|
record.errors.add(attribute, message: "Local validator#{options[:custom]}") if value.blank?
|
|
end
|
|
end
|
|
|
|
class LikeValidator < ActiveModel::EachValidator
|
|
def initialize(options)
|
|
@with = options[:with]
|
|
super
|
|
end
|
|
|
|
def validate_each(record, attribute, value)
|
|
unless value[@with]
|
|
record.errors.add attribute, "does not appear to be like #{@with}"
|
|
end
|
|
end
|
|
end
|
|
|
|
attr_accessor :title, :karma
|
|
end
|