##// END OF EJS Templates
Merged r4082 from trunk....
Eric Davis -
r4029:46fc87839668
parent child
Show More
@@ -51,4 +51,4
51
51
52 <% html_title(l(:label_roadmap)) %>
52 <% html_title(l(:label_roadmap)) %>
53
53
54 <%= context_menu :controller => 'issues', :action => 'context_menu' %>
54 <%= context_menu issues_context_menu_path %>
@@ -40,6 +40,8 class VersionsControllerTest < ActionController::TestCase
40 assert assigns(:versions).include?(Version.find(3))
40 assert assigns(:versions).include?(Version.find(3))
41 # Completed version doesn't appear
41 # Completed version doesn't appear
42 assert !assigns(:versions).include?(Version.find(1))
42 assert !assigns(:versions).include?(Version.find(1))
43 # Context menu on issues
44 assert_select "script", :text => Regexp.new(Regexp.escape("new ContextMenu('/issues/context_menu')"))
43 end
45 end
44
46
45 def test_index_with_completed_versions
47 def test_index_with_completed_versions
General Comments 0
You need to be logged in to leave comments. Login now