Sha256: 9a8bc2bbd55cf40516935e8ae99286796f7a3172d490eb2b32b6a7db3131f072
Contents?: true
Size: 401 Bytes
Versions: 48
Compression:
Stored size: 401 Bytes
Contents
# frozen_string_literal: true require "abstract_unit" class ForceSSLApiController < ActionController::API force_ssl def one; end def two head :ok end end class ForceSSLApiTest < ActionController::TestCase tests ForceSSLApiController def test_redirects_to_https get :two assert_response 301 assert_equal "https://test.host/force_ssl_api/two", redirect_to_url end end
Version data entries
48 entries across 48 versions & 2 rubygems