我正在使用inherited_resources,并且我有一个控制器,例如:
class Admin::PostsController < InheritedResources::Base
end
在我的控制器测试中:
it "redirects to the post" do
post = Post.create! valid_attributes
put :update, {:id => post.to_param, :post => valid_attributes}, valid_session
response.should redirect_to([:admin, post])
end
我收到此错误:
undefined method `posts_url' for #<Admin::PostsController:0xec6fb20>
奇怪的是它只发生在测试中!应用程序运行正常。
我错过了什么?
[编辑] 我发现报告了这个问题,但没有答案就关闭了https://github.com/josevalim/inherited_resources/issues/193
[编辑] 我刚刚找到了它发生的原因并在上面的问题页面上做出了回应