Redirects are to urls, not paths

上级 9fe65c62
...@@ -25,7 +25,7 @@ class <%= controller_class_name %>ControllerTest < ActionDispatch::IntegrationTe ...@@ -25,7 +25,7 @@ class <%= controller_class_name %>ControllerTest < ActionDispatch::IntegrationTe
post <%= index_helper %>_url, params: { <%= "#{singular_table_name}: { #{attributes_hash} }" %> } post <%= index_helper %>_url, params: { <%= "#{singular_table_name}: { #{attributes_hash} }" %> }
end end
assert_redirected_to <%= singular_table_name %>_path(<%= class_name %>.last) assert_redirected_to <%= singular_table_name %>_url(<%= class_name %>.last)
end end
test "should show <%= singular_table_name %>" do test "should show <%= singular_table_name %>" do
...@@ -40,7 +40,7 @@ class <%= controller_class_name %>ControllerTest < ActionDispatch::IntegrationTe ...@@ -40,7 +40,7 @@ class <%= controller_class_name %>ControllerTest < ActionDispatch::IntegrationTe
test "should update <%= singular_table_name %>" do test "should update <%= singular_table_name %>" do
patch <%= show_helper %>, params: { <%= "#{singular_table_name}: { #{attributes_hash} }" %> } patch <%= show_helper %>, params: { <%= "#{singular_table_name}: { #{attributes_hash} }" %> }
assert_redirected_to <%= singular_table_name %>_path(<%= "@#{singular_table_name}" %>) assert_redirected_to <%= singular_table_name %>_url(<%= "@#{singular_table_name}" %>)
end end
test "should destroy <%= singular_table_name %>" do test "should destroy <%= singular_table_name %>" do
...@@ -48,7 +48,7 @@ class <%= controller_class_name %>ControllerTest < ActionDispatch::IntegrationTe ...@@ -48,7 +48,7 @@ class <%= controller_class_name %>ControllerTest < ActionDispatch::IntegrationTe
delete <%= show_helper %> delete <%= show_helper %>
end end
assert_redirected_to <%= index_helper %>_path assert_redirected_to <%= index_helper %>_url
end end
end end
<% end -%> <% end -%>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册