【发布时间】:2012-11-30 12:02:17
【问题描述】:
我正在编写一个视图规范,它呈现一个包含该行的视图(在 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")
【问题讨论】:
标签: ruby-on-rails-3 rspec stubbing