aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/api/force_ssl_test.rb
blob: 2343d1340d2586a627b2fee8a2b3fee689466578 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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