2017-04-23 10:09:52 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2021-11-25 04:07:38 -08:00
|
|
|
describe LanguagesHelper do
|
2022-02-07 17:41:17 -08:00
|
|
|
describe 'the SUPPORTED_LOCALES constant' do
|
|
|
|
it 'includes all i18n locales' do
|
|
|
|
expect(Set.new(described_class::SUPPORTED_LOCALES.keys + described_class::REGIONAL_LOCALE_NAMES.keys)).to include(*I18n.available_locales)
|
2017-04-23 10:09:52 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-02-08 19:15:38 -08:00
|
|
|
describe 'native_locale_name' do
|
|
|
|
it 'finds the human readable native name from a key' do
|
2022-11-10 15:06:18 -08:00
|
|
|
expect(helper.native_locale_name(:de)).to eq('Deutsch')
|
2022-02-08 19:15:38 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'standard_locale_name' do
|
|
|
|
it 'finds the human readable standard name from a key' do
|
|
|
|
expect(helper.standard_locale_name(:de)).to eq('German')
|
2017-04-23 10:09:52 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|