module FFaker::SSNMX

Public Instance Methods

imss() click to toggle source

es.wikipedia.org/wiki/Instituto_Mexicano_del_Seguro_Social The Social Security number from IMSS (Instituto Mexicano del Seguro Social) is a eleven-digit number in the format “AABBCCDDEE-F”.

# File lib/ffaker/ssn_mx.rb, line 25
def imss
  FFaker.numerify('##########-#')
end
imss_undashed() click to toggle source

es.wikipedia.org/wiki/Instituto_Mexicano_del_Seguro_Social The Social Security number from IMSS (Instituto Mexicano del Seguro Social) is a eleven-digit number in the format “AABBCCDDEEF”.

# File lib/ffaker/ssn_mx.rb, line 34
def imss_undashed
  FFaker.numerify('###########')
end
issste() click to toggle source

es.wikipedia.org/wiki/Instituto_de_Seguridad_y_Servicios_Sociales_de_los_Trabajadores_del_Estado The Social Security number from ISSSTE (Instituto de Seguridad y Servicios Sociales de los Trabajadores del Estado) is a eleven-digit number in the format “AABBCCDDEE-F”.

# File lib/ffaker/ssn_mx.rb, line 43
def issste
  FFaker.numerify('##########-#')
end
issste_undashed() click to toggle source

es.wikipedia.org/wiki/Instituto_de_Seguridad_y_Servicios_Sociales_de_los_Trabajadores_del_Estado The Social Security number from ISSSTE (Instituto de Seguridad y Servicios Sociales de los Trabajadores del Estado) is a eleven-digit number in the format “AABBCCDDEEF”.

# File lib/ffaker/ssn_mx.rb, line 52
def issste_undashed
  FFaker.numerify('###########')
end
ssn() click to toggle source

The Social Security number is a eleven-digit number in the format “AABBCCDDEE-F”.

# File lib/ffaker/ssn_mx.rb, line 10
def ssn
  FFaker.numerify('##########-#')
end
ssn_undashed() click to toggle source

The Social Security number is a eleven-digit number in the format “AABBCCDDEEF”.

# File lib/ffaker/ssn_mx.rb, line 16
def ssn_undashed
  FFaker.numerify('###########')
end