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
|
# frozen_string_literal: true
require_relative 'helper'
class TestAddressUSUS < Test::Unit::TestCase
include DeterministicHelper
assert_methods_are_deterministic(
FFaker::AddressUS,
:continental_state_abbr, :continental_state,
:state_abbr, :state_and_territories_abbr, :state,
:zip_code
)
def test_us_state
assert_match(/[ a-z]/, FFaker::AddressUS.state)
end
def test_us_state_abbr
assert_match(/[A-Z]/, FFaker::AddressUS.state_abbr)
%w[California california CALIFORNIA].each do |state|
assert_match('CA', FFaker::AddressUS.state_abbr(state))
end
['South Carolina', 'south carolina'].each do |state|
assert_match('SC', FFaker::AddressUS.state_abbr(state))
end
assert_raise ArgumentError, "Unexpected state: 'unknown'" do
FFaker::AddressUS.state_abbr('unknown')
end
end
def test_us_state_and_territories_abbr
assert_match(/[A-Z]/, FFaker::AddressUS.state_and_territories_abbr)
end
def test_us_continental_state
assert_match(/[ a-z]/, FFaker::AddressUS.continental_state)
end
def test_us_continental_state_abbr
assert_match(/[A-Z]/, FFaker::AddressUS.continental_state_abbr)
end
def test_zip_code
assert_match(/[0-9]/, FFaker::AddressUS.zip_code)
end
def test_zip_code_frozen
assert FFaker::AddressUS.zip_code.frozen? == false
end
end
|