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:
parent
52f0d2a98d
commit
53682d0a2a
@ -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
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user