module FFaker::SSNMX
def imss
is a eleven-digit number in the format
(Instituto Mexicano del Seguro Social)
The Social Security number from IMSS
http://es.wikipedia.org/wiki/Instituto_Mexicano_del_Seguro_Social
def imss FFaker.numerify('##########-#') end
def imss_undashed
is a eleven-digit number in the format
(Instituto Mexicano del Seguro Social)
The Social Security number from IMSS
http://es.wikipedia.org/wiki/Instituto_Mexicano_del_Seguro_Social
def imss_undashed FFaker.numerify('###########') end
def issste
is a eleven-digit number in the format
(Instituto de Seguridad y Servicios Sociales de los Trabajadores del Estado)
The Social Security number from ISSSTE
http://es.wikipedia.org/wiki/Instituto_de_Seguridad_y_Servicios_Sociales_de_los_Trabajadores_del_Estado
def issste FFaker.numerify('##########-#') end
def issste_undashed
is a eleven-digit number in the format
(Instituto de Seguridad y Servicios Sociales de los Trabajadores del Estado)
The Social Security number from ISSSTE
http://es.wikipedia.org/wiki/Instituto_de_Seguridad_y_Servicios_Sociales_de_los_Trabajadores_del_Estado
def issste_undashed FFaker.numerify('###########') end
def ssn
The Social Security number is a eleven-digit number in the format
def ssn FFaker.numerify('##########-#') end
def ssn_undashed
The Social Security number is a eleven-digit number in the format
def ssn_undashed FFaker.numerify('###########') end