在测试我的辅助方法时,我不知道如何测试已设置 cookie。
假设的辅助方法:
def my_helper(k,v)
cookies[k] = v
end
测试:
it 'should set cookies' do
helper.my_helper("foo", "bar")
helper.cookies["foo"].should == "bar" #nil
helper.response.cookies["foo"].should == "bar" #nil
end
有人知道怎么做吗?