def project_tree_options_for_select(projects, options = {})
s = ''
project_tree(projects) do |project, level|
- name_prefix = (level > 0 ? (' ' * 2 * level + '» ').html_safe : '')
+ name_prefix = (level > 0 ? (' ' * 2 * level + '» ') : '').html_safe
tag_options = {:value => project.id}
if project == options[:selected] || (options[:selected].respond_to?(:include?) && options[:selected].include?(project))
tag_options[:selected] = 'selected'
assert @controller.respond_to?(:call_hook)
end
+ def test_project_jump_box_should_escape_names_once
+ Project.find(1).update_attribute :name, 'Foo & Bar'
+ @request.session[:user_id] = 2
+
+ get :index
+ assert_select "#header select" do
+ assert_select "option", :text => 'Foo & Bar'
+ end
+ end
+
context "test_api_offset_and_limit" do
context "without params" do
should "return 0, 25" do