aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/test/controller/api/force_ssl_test.rb
blob: d239964e4a695f58f69074caf95786a480db55e7 (plain) (tree)
1
                       


















                                                                       
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