Sha256: 8b16f54a6f6fd6bec389086433327252f752fe0cefecfc8de8ec6d7852dda03d
Contents?: true
Size: 1.33 KB
Versions: 5
Compression:
Stored size: 1.33 KB
Contents
# 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
Version data entries
5 entries across 5 versions & 1 rubygems