aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/test/controller/api/force_ssl_test.rb
blob: 8191578eb077d83bda0fcb47607e5939f73a73c5 (plain) (tree)
1
2
3
4
5
6
7
8

                             
                       

                                                   


                                       















                                                                       
# frozen_string_literal: true

require "abstract_unit"

class ForceSSLApiController < ActionController::API
  ActiveSupport::Deprecation.silence do
    force_ssl
  end

  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