Sha256: 3b5e7964dccedcaa1975b0d832ebf9864ed2ac2d29c16e54da2de1f63adc316e
Contents?: true
Size: 433 Bytes
Versions: 48
Compression:
Stored size: 433 Bytes
Contents
# frozen_string_literal: true require "abstract_unit" class WithCookiesController < ActionController::API include ActionController::Cookies def with_cookies render plain: cookies[:foobar] end end class WithCookiesTest < ActionController::TestCase tests WithCookiesController def test_with_cookies request.cookies[:foobar] = "bazbang" get :with_cookies assert_equal "bazbang", response.body end end
Version data entries
48 entries across 48 versions & 2 rubygems