我正在编写一个视图规范,它呈现一个包含该行的视图(在 haml 中):
=link_to new_post_path
但规范失败:
ActionController::RoutingError: No route matches {:action=>"new", :controller=>"post"}
我正在尝试对该new_post_path
方法进行存根,因为它对视图规范实际上并不重要,但没有任何运气。
在我的规范中,我尝试了以下两种变体,但没有任何运气:
stub!(:new_post_path).and_return("this path isn't important")
controller.stub!(:new_post_path).and_return("this path isn't important")