You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
878 B
35 lines
878 B
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
|
|
describe 'Localization' do |
|
after(:all) do |
|
I18n.locale = I18n.default_locale |
|
end |
|
|
|
it 'uses a specific region when provided' do |
|
headers = { 'Accept-Language' => 'zh-HK' } |
|
|
|
get "/about", headers: headers |
|
expect(response.body).to include( |
|
I18n.t('about.about_mastodon_html', locale: 'zh-HK') |
|
) |
|
end |
|
|
|
it 'falls back to a locale when region missing' do |
|
headers = { 'Accept-Language' => 'es-FAKE' } |
|
|
|
get "/about", headers: headers |
|
expect(response.body).to include( |
|
I18n.t('about.about_mastodon_html', locale: 'es') |
|
) |
|
end |
|
it 'falls back to english when locale is missing' do |
|
headers = { 'Accept-Language' => '12-FAKE' } |
|
|
|
get "/about", headers: headers |
|
expect(response.body).to include( |
|
I18n.t('about.about_mastodon_html', locale: 'en') |
|
) |
|
end |
|
end
|
|
|