about summary refs log tree commit diff
path: root/spec
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-02-09 04:15:38 +0100
committerGitHub <noreply@github.com>2022-02-09 04:15:38 +0100
commit3aebe711fd54d75c1ea35e65a5dc342e78508d15 (patch)
treedfcf0267428ea30cce194e58d201d5cabcc1e0cc /spec
parentfd3a45e3482e86dad3c1dfc069144864c4ff0b0b (diff)
Change languages to be listed under standard instead of native name in admin UI (#17485)
Diffstat (limited to 'spec')
-rw-r--r--spec/helpers/languages_helper_spec.rb12
1 files changed, 9 insertions, 3 deletions
diff --git a/spec/helpers/languages_helper_spec.rb b/spec/helpers/languages_helper_spec.rb
index b455cee33..5587fc261 100644
--- a/spec/helpers/languages_helper_spec.rb
+++ b/spec/helpers/languages_helper_spec.rb
@@ -9,9 +9,15 @@ describe LanguagesHelper do
     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')
+  describe 'native_locale_name' do
+    it 'finds the human readable native name from a key' do
+      expect(helper.native_locale_name(:en)).to eq('English')
+    end
+  end
+
+  describe 'standard_locale_name' do
+    it 'finds the human readable standard name from a key' do
+      expect(helper.standard_locale_name(:de)).to eq('German')
     end
   end
 end