Sha256: 38cac4d08aa9d318333e1c89f77e5ca4ae3db269fbb640888abb104b4e73bcb1
Contents?: true
Size: 719 Bytes
Versions: 2
Compression:
Stored size: 719 Bytes
Contents
# encoding: utf-8 require 'helper' class TestFakerIdentification < Test::Unit::TestCase def setup @tester = FFaker::Identification end def test_drivers_license ###-###-##-###-# drivers_license_regex = /\A[A-Z]\d{3}-\d{3}-\d{2}-\d{3}-\d{1}\z/ assert_match drivers_license_regex, @tester.drivers_license end def test_ssn assert_match(/\A\d{3}-\d{2}-\d{4}\z/, @tester.ssn) end def test_gender assert_match(/\A(Male|Female)\z/, @tester.gender) end def test_ethnicity ethnicity_regex = /\A(African American|Asian\/Pacific Islander|Caucasian|Hispanic|Native American|Multiracial|Other|Prefer not to respond)\z/ assert_match ethnicity_regex, @tester.ethnicity end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ffaker-2.2.0 | test/test_identification.rb |
ffaker-2.1.0 | test/test_identification.rb |