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/render_js_test.rb

36 lines
755 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require "abstract_unit"
require "controller/fake_models"
2009-05-13 20:00:36 -04:00
class RenderJSTest < ActionController::TestCase
class TestController < ActionController::Base
protect_from_forgery
2009-05-13 20:00:36 -04:00
def self.controller_path
"test"
end
def render_vanilla_js_hello
2016-08-06 13:35:13 -04:00
render js: "alert('hello')"
end
def show_partial
2016-08-06 13:35:13 -04:00
render partial: "partial"
end
2009-05-13 20:00:36 -04:00
end
tests TestController
2009-05-13 20:00:36 -04:00
def test_render_vanilla_js
get :render_vanilla_js_hello, xhr: true
2009-05-13 20:00:36 -04:00
assert_equal "alert('hello')", @response.body
assert_equal "text/javascript", @response.media_type
2009-05-13 20:00:36 -04:00
end
2009-05-13 20:00:36 -04:00
def test_should_render_js_partial
get :show_partial, format: "js", xhr: true
assert_equal "partial js", @response.body
end
end