mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
Unify CSS classes for custom fields in issue#show, issue#edit and issue#bulk_edit (#32471).
Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@19690 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -677,7 +677,7 @@ class ProjectsControllerTest < Redmine::ControllerTest
|
||||
ProjectCustomField.find_by_name('Development status').update_attribute :visible, true
|
||||
get(:show, :params => {:id => 'ecookbook'})
|
||||
assert_response :success
|
||||
assert_select 'li[class=?]', 'cf_3', :text => /Development status/
|
||||
assert_select 'li.list_cf.cf_3', :text => /Development status/
|
||||
end
|
||||
|
||||
def test_show_should_not_display_hidden_custom_fields
|
||||
|
||||
@@ -141,7 +141,7 @@ class UsersControllerTest < Redmine::ControllerTest
|
||||
get :show, :params => {:id => 2}
|
||||
assert_response :success
|
||||
|
||||
assert_select 'li[class=?]', 'cf_4', :text => /Phone number/
|
||||
assert_select 'li.cf_4.string_cf', :text => /Phone number/
|
||||
end
|
||||
|
||||
def test_show_should_not_display_hidden_custom_fields
|
||||
|
||||
@@ -93,7 +93,7 @@ class CustomFieldsHelperTest < Redmine::HelperTest
|
||||
field = IssueCustomField.create!(:name => 'Long text', :field_format => 'text', :text_formatting => 'full')
|
||||
value = CustomValue.new(:value => 'bar', :custom_field => field)
|
||||
|
||||
assert_select_in custom_field_tag('object', value), 'textarea[class=?]', 'text_cf wiki-edit'
|
||||
assert_select_in custom_field_tag('object', value), "textarea.text_cf.wiki-edit.cf_#{field.id}"
|
||||
end
|
||||
|
||||
def test_select_type_radio_buttons
|
||||
|
||||
Reference in New Issue
Block a user