我必须为我的一个功能列表页面编写集成测试用例,并且该功能索引方法具有如下代码
def index
@food_categories = current_user.food_categories
end
现在,当我尝试为此编写测试用例时,它会引发错误
'undefined method features for nil class' because it can not get the current user
现在我要做的是在下面我在每个语句之前编写登录过程,然后为功能列表页面编写测试用例
你能告诉我我怎样才能得到current_user
吗?
仅供参考,我使用了 devise gem 并使用 Rspec 处理集成测试用例