Class: LicenseValidator::Validations::StateWv

Inherits:
Base
  • Object
show all
Defined in:
lib/license_validator/validations/state_wv.rb

Instance Attribute Summary

Attributes inherited from Base

#driver, #errors, #infos, #warnings

Instance Method Summary collapse

Methods inherited from Base

human_attribute_name, #initialize, lookup_ancestors, #read_attribute_for_validation, #validation_results

Constructor Details

This class inherits a constructor from LicenseValidator::Validations::Base

Instance Method Details

#validateObject

See Also:

  • super


7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/license_validator/validations/state_wv.rb', line 7

def validate
  super

  if driver.last_name.blank?
    errors.add(:last_name, 'Last name is required for WV.')
  end

  lic_num = driver.license_num

  return if lic_num.match?(/\A\d{7}\z/i)

  return if lic_num.match?(/\A[01a-z][a-z]?\d{5,6}\z/i)

  errors.add(
    :license_num,
    'License number requires 7 numeric or 1-2 alpha, 5-6 numeric (Can start with 0 or 1 or any letter) for WV.'
  )
end