mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
7cf445d3bd
These calls to `content_type` were triggering the deprecation from
c631e8d011
in upgraded applications.
We can use `media_type` in all of these cases to avoid the deprecation.
44 lines
1.1 KiB
Ruby
44 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "abstract_unit"
|
|
require "controller/fake_models"
|
|
|
|
class RenderJSTest < ActionController::TestCase
|
|
class TestController < ActionController::Base
|
|
protect_from_forgery
|
|
|
|
def self.controller_path
|
|
"test"
|
|
end
|
|
|
|
def render_vanilla_js_hello
|
|
render js: "alert('hello')"
|
|
end
|
|
|
|
def show_partial
|
|
render partial: "partial"
|
|
end
|
|
end
|
|
|
|
tests TestController
|
|
|
|
def test_render_vanilla_js
|
|
get :render_vanilla_js_hello, xhr: true
|
|
assert_equal "alert('hello')", @response.body
|
|
assert_equal "text/javascript", @response.media_type
|
|
end
|
|
|
|
def test_should_render_js_partial
|
|
get :show_partial, format: "js", xhr: true
|
|
assert_equal "partial js", @response.body
|
|
end
|
|
|
|
def test_should_not_trigger_content_type_deprecation
|
|
original = ActionDispatch::Response.return_only_media_type_on_content_type
|
|
ActionDispatch::Response.return_only_media_type_on_content_type = true
|
|
|
|
assert_not_deprecated { get :render_vanilla_js_hello, xhr: true }
|
|
ensure
|
|
ActionDispatch::Response.return_only_media_type_on_content_type = original
|
|
end
|
|
end
|