diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-03-12 17:34:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-12 17:34:00 +0100 |
commit | 65fffeac3f960f9c74d693525a73ac14b201bf2b (patch) | |
tree | 41d5eaa2a446e161dc26d39960cde870135ee06f /spec/requests | |
parent | 6a8dc59eb8187b49aa3cbf3e4bf80565d8aa15d3 (diff) |
Redesign landing page (#10232)
Diffstat (limited to 'spec/requests')
-rw-r--r-- | spec/requests/localization_spec.rb | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/spec/requests/localization_spec.rb b/spec/requests/localization_spec.rb index f625a93a4..496a885e8 100644 --- a/spec/requests/localization_spec.rb +++ b/spec/requests/localization_spec.rb @@ -11,8 +11,9 @@ describe 'Localization' do headers = { 'Accept-Language' => 'zh-HK' } get "/about", headers: headers + expect(response.body).to include( - I18n.t('about.about_mastodon_html', locale: 'zh-HK') + I18n.t('about.tagline', locale: 'zh-HK') ) end @@ -20,16 +21,18 @@ describe 'Localization' do headers = { 'Accept-Language' => 'es-FAKE' } get "/about", headers: headers + expect(response.body).to include( - I18n.t('about.about_mastodon_html', locale: 'es') + 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 + expect(response.body).to include( - I18n.t('about.about_mastodon_html', locale: 'en') + I18n.t('about.tagline', locale: 'en') ) end end |