Sha256: b4172194326e6950b010fde173b4208563215a150eb56793ee96651b018f5d36
Contents?: true
Size: 677 Bytes
Versions: 5
Compression:
Stored size: 677 Bytes
Contents
# frozen_string_literal: true require_relative 'helper' class TestAddressDE < Test::Unit::TestCase include DeterministicHelper assert_methods_are_deterministic( FFaker::AddressDE, :city, :state, :street_address, :street_name, :zip_code ) def test_city assert_match(/[ a-z]+/, FFaker::AddressDE.city) end def test_state assert_match(/[ a-z]/, FFaker::AddressDE.state) end def test_zip_code assert_match(/^\d{5}$/, FFaker::AddressDE.zip_code) end def test_street_name assert_match(/[ a-z]+/, FFaker::AddressDE.street_name) end def test_street_address assert_match(/[ a-z]+/, FFaker::AddressDE.street_address) end end
Version data entries
5 entries across 5 versions & 1 rubygems