aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/http/force_ssl_test.rb
blob: 479ede6b78af4f33303d789ae9578ed2a4bd7c19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'abstract_unit'

class ForceSSLHTTPController < ActionController::HTTP
  force_ssl

  def one; end
  def two
    head :ok
  end
end

class ForceSSLHTTPTest < ActionController::TestCase
  tests ForceSSLHTTPController

  def test_banana_redirects_to_https
    get :two
    assert_response 301
    assert_equal "https://test.host/force_sslhttp/two", redirect_to_url
  end
end