##// END OF EJS Templates
remove hard-coded '.rhtml' from "test_index_with_project" of functional issues controller test (#6317)....
Toshi MARUYAMA -
r6919:e07a792773cf
parent child
Show More
@@ -89,7 +89,7 class IssuesControllerTest < ActionController::TestCase
89 Setting.display_subprojects_issues = 0
89 Setting.display_subprojects_issues = 0
90 get :index, :project_id => 1
90 get :index, :project_id => 1
91 assert_response :success
91 assert_response :success
92 assert_template 'index.rhtml'
92 assert_template 'index'
93 assert_not_nil assigns(:issues)
93 assert_not_nil assigns(:issues)
94 assert_tag :tag => 'a', :content => /Can't print recipes/
94 assert_tag :tag => 'a', :content => /Can't print recipes/
95 assert_no_tag :tag => 'a', :content => /Subproject issue/
95 assert_no_tag :tag => 'a', :content => /Subproject issue/
General Comments 0
You need to be logged in to leave comments. Login now