我有一个具有以下逻辑和语法方法的 Rails 控制器
def index
if get_submission
render :action => :workspace
else
flash[:notice] = t('flashes.no_more_submissions')
redirect_to root_path
end
end
...
def get_submission
...
end
在我的 testunit 功能测试中,我想存根 get_submission 以便它自动返回 false。我希望
controller.stubs(:get_submission) { false }
会做的伎俩,但没有快乐。我来自 rspec 背景,对 testunit 的经验很少。任何建议表示赞赏。
干杯...