1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/test/controller/api/force_ssl_test.rb

21 lines
370 B
Ruby
Raw Normal View History

require "abstract_unit"
2015-04-15 14:30:27 -04:00
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