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
Kir Shatrov baf14ae513 Switch to kwargs in ActionController::TestCase and ActionDispatch::Integration
Non-kwargs requests are deprecated now.
Guides are updated as well.

`post url, nil, nil, { a: 'b' }` doesn't make sense.
`post url, params: { y: x }, session: { a: 'b' }` would be an explicit way to do the same
2015-01-29 14:44:46 +02:00

34 lines
741 B
Ruby

require 'abstract_unit'
require 'controller/fake_models'
require 'pathname'
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
xhr :get, :render_vanilla_js_hello
assert_equal "alert('hello')", @response.body
assert_equal "text/javascript", @response.content_type
end
def test_should_render_js_partial
xhr :get, :show_partial, format: 'js'
assert_equal 'partial js', @response.body
end
end