blob: 2664423af88701b3f0d2ac8b76abcb7d3b55cc57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# frozen_string_literal: true
require 'spec_helper'
describe Gitlab::I18n do
let(:user) { create(:user, preferred_language: 'es') }
describe '.locale=' do
after do
described_class.use_default_locale
end
it 'sets the locale based on current user preferred language' do
described_class.locale = user.preferred_language
expect(FastGettext.locale).to eq('es')
expect(::I18n.locale).to eq(:es)
end
end
describe '.use_default_locale' do
it 'resets the locale to the default language' do
described_class.locale = user.preferred_language
described_class.use_default_locale
expect(FastGettext.locale).to eq('en')
expect(::I18n.locale).to eq(:en)
end
end
end
|