Sha256: f0d881e7398b51267202f7773adb30588a1d80ce496c173f7e6b9fbf2d2f3e6a
Contents?: true
Size: 1.45 KB
Versions: 1
Compression:
Stored size: 1.45 KB
Contents
# frozen_string_literal: true require_relative 'helper' class TestPhoneNumberFR < Test::Unit::TestCase include DeterministicHelper assert_methods_are_deterministic( FFakerTW::PhoneNumberFR, :phone_number, :home_work_phone_number, :mobile_phone_number, :international_phone_number, :international_mobile_phone_number, :international_home_work_phone_number, :country_code ) def setup @tester = FFakerTW::PhoneNumberFR end def test_phone_number 10.times do assert_match(/^0[1-9](\s?\d{2}){4}$/, @tester.phone_number) end end def test_home_work_phone_number assert_match(/^0([1-5]|[8-9])(\s?\d{2}){4}$/, @tester.home_work_phone_number) end def test_mobile_phone_number assert_match(/^0([6-7])(\s?\d{2}){4}$/, @tester.mobile_phone_number) end def test_international_phone_number 10.times do assert_match(/^(\+|00)33\s?([1-9])(\s?\d{2}){4}$/, @tester.international_phone_number) end end def test_international_mobile_phone_number assert_match(/^(\+|00)33\s?([6-7])(\s?\d{2}){4}$/, @tester.international_mobile_phone_number) end def test_international_home_work_phone_number assert_match(/^(\+|00)33\s?([1-5]|[8-9])(\s?\d{2}){4}$/, @tester.international_home_work_phone_number) end def test_country_code 10.times do assert_match(/(\+|00)33/, @tester.country_code) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ffakerTW-0.1.0 | test/test_phone_number_fr.rb |