]> source.dussan.org Git - redmine.git/commitdiff
Some tests in ApplicationHelperTest are declared as private (#33562).
authorGo MAEDA <maeda@farend.jp>
Tue, 9 Jun 2020 05:50:52 +0000 (05:50 +0000)
committerGo MAEDA <maeda@farend.jp>
Tue, 9 Jun 2020 05:50:52 +0000 (05:50 +0000)
Patch by Go MAEDA.

git-svn-id: http://svn.redmine.org/redmine/trunk@19814 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/helpers/application_helper_test.rb

index c027338802f13f648fd9134f113d7c2ebeb4dbda..516f3436c3ef658624b3138d3d5f6eb4c9af4404 100644 (file)
@@ -1921,6 +1921,22 @@ class ApplicationHelperTest < Redmine::HelperTest
     assert_nil render_if_exist(:partial => 'non_exist_partial')
   end
 
+  def test_export_csv_encoding_select_tag_should_return_nil_when_general_csv_encoding_is_UTF8
+    with_locale 'az' do
+      assert_equal l(:general_csv_encoding), 'UTF-8'
+      assert_nil export_csv_encoding_select_tag
+    end
+  end
+
+  def test_export_csv_encoding_select_tag_should_have_two_option_when_general_csv_encoding_is_not_UTF8
+    with_locale 'en' do
+      assert_not_equal l(:general_csv_encoding), 'UTF-8'
+      result = export_csv_encoding_select_tag
+      assert_select_in result, "option[selected='selected'][value=#{l(:general_csv_encoding)}]", :text => l(:general_csv_encoding)
+      assert_select_in result, "option[value='UTF-8']", :text => 'UTF-8'
+    end
+  end
+
   private
 
   def wiki_links_with_special_characters
@@ -1951,20 +1967,4 @@ class ApplicationHelperTest < Redmine::HelperTest
                   :class => "wiki-page new"),
     }
   end
-
-  def test_export_csv_encoding_select_tag_should_return_nil_when_general_csv_encoding_is_UTF8
-    with_locale 'az' do
-      assert_equal l(:general_csv_encoding), 'UTF-8'
-      assert_nil export_csv_encoding_select_tag
-    end
-  end
-
-  def test_export_csv_encoding_select_tag_should_have_two_option_when_general_csv_encoding_is_not_UTF8
-    with_locale 'en' do
-      assert_not_equal l(:general_csv_encoding), 'UTF-8'
-      result = export_csv_encoding_select_tag
-      assert_select_in result, "option[selected='selected'][value=#{l(:general_csv_encoding)}]", :text => l(:general_csv_encoding)
-      assert_select_in result, "option[value='UTF-8']", :text => 'UTF-8'
-    end
-  end
 end