mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
35b3de8021
The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
20 lines
370 B
Ruby
20 lines
370 B
Ruby
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
|