2017-04-23 19:09:52 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2021-11-25 13:07:38 +01:00
|
|
|
describe LanguagesHelper do
|
2022-02-08 02:41:17 +01: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 19:09:52 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-02-09 04:15:38 +01:00
|
|
|
describe 'native_locale_name' do
|
|
|
|
it 'finds the human readable native name from a key' do
|
|
|
|
expect(helper.native_locale_name(:en)).to eq('English')
|
|
|
|
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 19:09:52 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|