Some tests in ApplicationHelperTest are declared as private (#33562).

Patch by Go MAEDA.


git-svn-id: http://svn.redmine.org/redmine/trunk@19814 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2020-06-09 05:50:52 +00:00
parent a00bbc3263
commit cb33cc2cf2

View 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