我开始为我的控制器编写测试。对于其中一次,我需要登录,以检查页面是否呈现等。
由于我使用的是具有current_user帮助器的Devise而不是User模型,我该如何形成我的:
describe "when it GETS 'town'" do
it "should render the template and be successful" do
get :index
response.should render_template(:index)
response.should be_success
end
end
所以我没有得到未定义的“身份验证!”方法(设计特定的)错误?