Sha256: 5b4ba524159e188037ec791e9a37f79ecf34fabda1f110acf62f8caf661dbe74
Contents?: true
Size: 1.32 KB
Versions: 6
Compression:
Stored size: 1.32 KB
Contents
# frozen_string_literal: true require '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
6 entries across 6 versions & 1 rubygems