1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
# frozen_string_literal: true
require_relative 'helper'
class TestPhoneNumberPL < Test::Unit::TestCase
include DeterministicHelper
assert_methods_are_deterministic(
FFaker::PhoneNumberPL,
:home_work_phone_number, :mobile_phone_number, :phone_number,
:area_code, :mobile_prefix,
:international_mobile_phone_number,
:international_home_work_phone_number,
:international_phone_number
)
def setup
@tester = FFaker::PhoneNumberPL
end
def test_home_work_phone_number
assert_match(/\A\d{9}\z/, @tester.home_work_phone_number)
end
def test_mobile_phone_number
assert_match(/\A\d{9}\z/, @tester.mobile_phone_number)
end
def test_phone_number
assert_match(/\A\d{9}\z/, @tester.phone_number)
end
def test_country_code
assert_equal(@tester::COUNTRY_CODE, '+48')
end
def test_international_mobile_phone_number
assert_match(/\A\+48 \d{9}\z/, @tester.international_mobile_phone_number)
end
def test_international_home_work_phone_number
assert_match(/\A\+48 \d{9}\z/, @tester.international_home_work_phone_number)
end
def test_international_phone_number
assert_match(/\A\+48 \d{9}\z/, @tester.international_phone_number)
end
def test_area_code
assert_include(@tester::AREA_CODES, @tester.area_code)
end
def test_mobile_prefixes
assert_include(@tester::MOBILE_PREFIXES, @tester.mobile_prefix)
end
end
|