about summary refs log tree commit diff
path: root/spec/helpers/languages_helper_spec.rb
blob: b455cee33d1a3ad8b32b5b4c23cd2c3021bed19b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require 'rails_helper'

describe LanguagesHelper do
  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)
    end
  end

  describe 'human_locale' do
    it 'finds the human readable local description from a key' do
      expect(helper.human_locale(:en)).to eq('English')
    end
  end
end