14 lines
308 B
Ruby
14 lines
308 B
Ruby
# frozen_string_literal: true
|
|
|
|
class GoodBigTextValidator < GoodTextValidator
|
|
class Validation < Validation
|
|
MIN = 1
|
|
MAX = 10_000
|
|
|
|
def perform
|
|
super
|
|
error :too_short, count: MIN if str_value.length < MIN
|
|
error :too_long, count: MAX if str_value.length > MAX
|
|
end
|
|
end
|
|
end
|