forked from faker-ruby/faker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for NL postal code (faker-ruby#984)
According to wikipedia, https://en.wikipedia.org/wiki/Postal_codes_in_the_Netherlands the postal code for the Netherlands should not include one of SA, SD, SS as a suffix. This is now fixed. Also added test for nl_locale
- Loading branch information
1 parent
ca77d20
commit 78261f0
Showing
2 changed files
with
51 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
require File.expand_path(File.dirname(__FILE__) + '/test_helper.rb') | ||
|
||
class TestNlLocale < Test::Unit::TestCase | ||
def setup | ||
@previous_locale = Faker::Config.locale | ||
Faker::Config.locale = 'nl' | ||
end | ||
|
||
def teardown | ||
Faker::Config.locale = nil | ||
end | ||
|
||
def test_nl_methods | ||
assert Faker::Address.building_number.is_a? String | ||
assert Faker::Address.secondary_address.is_a? String | ||
assert Faker::Address.postcode.is_a? String | ||
assert Faker::Address.state.is_a? String | ||
assert Faker::Address.city.is_a? String | ||
assert Faker::Address.city_prefix.is_a? String | ||
assert Faker::Address.city_suffix.is_a? String | ||
assert Faker::Address.street_suffix.is_a? String | ||
assert Faker::Address.street_name.is_a? String | ||
assert Faker::Address.street_address.is_a? String | ||
assert Faker::Address.default_country.is_a? String | ||
assert Faker::Company.suffix.is_a? String | ||
assert Faker::Company.buzzword.is_a? String | ||
assert Faker::Company.bs.is_a? String | ||
assert Faker::Company.name.is_a? String | ||
assert Faker::Internet.free_email.is_a? String | ||
assert Faker::Internet.domain_suffix.is_a? String | ||
assert Faker::Lorem.word.is_a? String | ||
assert Faker::Name.first_name.is_a? String | ||
assert Faker::Name.last_name.is_a? String | ||
assert Faker::Name.title.is_a? String | ||
assert Faker::Name.name.is_a? String | ||
assert Faker::PhoneNumber.phone_number.is_a? String | ||
assert Faker::PhoneNumber.cell_phone.is_a? String | ||
assert Faker::Book.title.is_a? String | ||
assert Faker::Book.author.is_a? String | ||
assert Faker::Book.publisher.is_a? String | ||
end | ||
|
||
def test_nl_postcode | ||
assert_match(/\d{4} [A-Z]{2}(?<!SA|SS|SD)/, Faker::Address.postcode) | ||
end | ||
|
||
def test_nl_is_default_country | ||
assert_equal('Nederland', Faker::Address.default_country) | ||
end | ||
end |