chinwagsocial/spec/requests/localization_spec.rb

39 lines
845 B
Ruby
Raw Normal View History

# 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
2019-03-13 03:34:00 +11:00
expect(response.body).to include(
2019-03-13 03:34:00 +11:00
I18n.t('about.tagline', locale: 'zh-HK')
)
end
it 'falls back to a locale when region missing' do
headers = { 'Accept-Language' => 'es-FAKE' }
get "/about", headers: headers
2019-03-13 03:34:00 +11:00
expect(response.body).to include(
2019-03-13 03:34:00 +11:00
I18n.t('about.tagline', locale: 'es')
)
end
it 'falls back to english when locale is missing' do
headers = { 'Accept-Language' => '12-FAKE' }
get "/about", headers: headers
2019-03-13 03:34:00 +11:00
expect(response.body).to include(
2019-03-13 03:34:00 +11:00
I18n.t('about.tagline', locale: 'en')
)
end
end