blob: 2b968e41322b1d45be138524222f0dbe4a775bd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# frozen_string_literal: true
RSpec.describe 'countries', feature_category: :onboarding do
it 'configures locals to EN' do
expect(ISO3166.configuration.locales).to eq([:en])
end
it 'initialises Ukraine with custom country name' do
expect(ISO3166::Country['UA'].data["name"]).to be('Ukraine (except the Crimea, Donetsk, and Luhansk regions)')
end
it 'initialises Taiwan with custom country name' do
expect(ISO3166::Country['TW'].data["name"]).to be('Taiwan')
end
end
|