##// END OF EJS Templates
Typo that makes the checkbox not visible (#5605)....
Jean-Philippe Lang -
r11072:0380292ecae6
parent child
Show More
@@ -16,7 +16,7
16 16 <p><%= label(:project, :parent_id, l(:field_parent)) %><%= parent_project_select_tag(@project) %></p>
17 17 <% end %>
18 18
19 <% if @project.safe_attribute? 'priority_id' %>
19 <% if @project.safe_attribute? 'inherit_members' %>
20 20 <p><%= f.check_box :inherit_members %></p>
21 21 <% end %>
22 22
@@ -397,6 +397,8 class ProjectsControllerTest < ActionController::TestCase
397 397 get :settings, :id => 'private-child'
398 398 assert_response :success
399 399 assert_template 'settings'
400
401 assert_select 'input[type=checkbox][name=?]', 'project[inherit_members]'
400 402 end
401 403
402 404 def test_settings_should_be_denied_for_member_on_closed_project
General Comments 0
You need to be logged in to leave comments. Login now