2016-08-08 138 views
0

如何使用水豚餅乾?Rails水豚餅乾問題

在我application_helper.rb我有法cookies

def user_currency(currency) 
cookies[:user_currency] = currency 
end 

,但是當我想在我的測試中使用這種方法

它返回我

undefined local variable or method `cookies' for #<RSpec::ExampleGroups 

如何處理呢?

回答

0

Cookie操作對於每個Capybara驅動程序都不同。最簡單的解決方案是使用提供統一API的show_me_the_cookies gem。請注意,有些驅動程序只能爲您當前正在訪問的域設置Cookie。