Sha256: d27c53d47b0db408d1ee16e97d5a676d7de8046bea6d0b0d72ce28626c9f40e5
Contents?: true
Size: 1.45 KB
Versions: 5
Compression:
Stored size: 1.45 KB
Contents
# frozen_string_literal: true # encoding: utf-8 require 'helper' class TestPhoneNumberFR < Test::Unit::TestCase include DeterministicHelper assert_methods_are_deterministic( FFaker::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 = FFaker::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
5 entries across 5 versions & 1 rubygems