Sha256: 11cd34919ef8f992b4466f8c1288ae9d3f2f784e8058c67b8b50637172197be6
Contents?: true
Size: 970 Bytes
Versions: 14
Compression:
Stored size: 970 Bytes
Contents
# encoding: utf-8 require 'helper' class TestPhoneNumberSG < Test::Unit::TestCase def setup @tester = Faker::PhoneNumberSG end def test_voip_number assert_match /3\d{3}\s\d{4}/, @tester.voip_number end def test_fixed_line_number assert_match /6\d{3}\s\d{4}/, @tester.fixed_line_number end def test_mobile_number assert_match /8\d{3}\s\d{4}/, @tester.mobile_number end def test_mobile_or_pager_number assert_match /9\d{3}\s\d{4}/, @tester.mobile_or_pager_number end def test_international_toll_free_number assert_match /800\s\d{3}\s\d{4}/, @tester.international_toll_free_number end def test_toll_free_number assert_match /1800\s\d{3}\s\d{4}/, @tester.toll_free_number end def test_premium_service_number assert_match /1900\s\d{3}\s\d{4}/, @tester.premium_service_number end def test_phone_number 10.times do assert_match /[6,8,9]\d{3}\s\d{4}/, @tester.phone_number end end end
Version data entries
14 entries across 14 versions & 3 rubygems