Sha256: 255bb9eeacb265ec74b4837a1049007618f4ad09de95bc652631aab94cb49ffb
Contents?: true
Size: 886 Bytes
Versions: 1
Compression:
Stored size: 886 Bytes
Contents
# frozen_string_literal: true require_relative 'helper' class TestIdentificationMX < Test::Unit::TestCase include DeterministicHelper assert_methods_are_deterministic( FFakerTW::IdentificationMX, :rfc_persona_moral, :rfc_persona_fisica, :curp ) def test_rfc_persona_moral re = /\A[a-zñÑ&]{3}\d{2}[0-1][0-9][0-3][0-9][a-z0-9]{3}\z/i assert_match(re, FFakerTW::IdentificationMX.rfc_persona_moral) end def test_rfc_persona_fisica re = /\A[a-zñÑ]{4}\d{2}[0-1][0-9][0-3][0-9][a-z0-9]{3}\z/i assert_match(re, FFakerTW::IdentificationMX.rfc_persona_fisica) end def test_curp or_curp_states_abbr = FFakerTW::IdentificationMX::ESTADOS_CURP.join('|') re = /\A[a-z][aeioux][a-z]{2}\d{2}[0-1]\d[0-3]\d[hm](?:#{or_curp_states_abbr})[bcdfghjklmnñpqrstvwxyz]{3}[0-9a-z]\d\z/ui assert_match(re, FFakerTW::IdentificationMX.curp) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ffakerTW-0.1.0 | test/test_identification_es_mx.rb |