1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-01 03:57:15 +00:00

Test if the encoding drop-down in the import settings includes all CSV encodings (#36377).

Patch by Go MAEDA.


git-svn-id: http://svn.redmine.org/redmine/trunk@21338 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2022-01-02 02:43:54 +00:00
parent 52f0d2a98d
commit 53682d0a2a

View File

@ -34,6 +34,8 @@ class ImportsControllerTest < Redmine::ControllerTest
:custom_fields_projects,
:custom_fields_trackers
include Redmine::I18n
def setup
User.current = nil
@request.session[:user_id] = 2
@ -72,7 +74,14 @@ class ImportsControllerTest < Redmine::ControllerTest
assert_response :success
assert_select 'select[name=?]', 'import_settings[separator]'
assert_select 'select[name=?]', 'import_settings[wrapper]'
assert_select 'select[name=?]', 'import_settings[encoding]'
assert_select 'select[name=?]', 'import_settings[encoding]' do
encodings = valid_languages.map do |lang|
ll(lang.to_s, :general_csv_encoding)
end.uniq
encodings.each do |encoding|
assert_select 'option[value=?]', encoding
end
end
assert_select 'select[name=?]', 'import_settings[date_format]'
end