跳至内容 跳至搜索

我们不想在连接单元测试中使用整个“加密堆栈”,但我们希望确保用户针对正确类型的 cookie(例如签名、加密或纯文本)进行测试。

方法
E
S

实例公共方法

加密()

# File actioncable/lib/action_cable/connection/test_case.rb, line 48
def encrypted
  @encrypted ||= TestCookies.new
end

签名()

# File actioncable/lib/action_cable/connection/test_case.rb, line 44
def signed
  @signed ||= TestCookies.new
end