我有一个黄瓜步骤
When /^I go to the Add Suggestions form$/ do
visit new_manage_suggestions_path
end
和一条路线
namespace "manage" do
resource :suggestions
end
rake 路由输出
manage_suggestions POST /manage suggestions(.:format) manage/suggestions#create
当我运行黄瓜时,我得到
undefined method `suggestions_path' for #<#<Class:0x000000064a4768>:0x000000064accd8> (ActionView::Template::Error)
为什么黄瓜要尝试这条路?
在我的new_manage_suggestions_path
应用程序中运行良好,我有一个使用它的链接并且运行良好。