2009-05-13 20:00:36 -04:00
|
|
|
require 'abstract_unit'
|
|
|
|
require 'controller/fake_models'
|
|
|
|
require 'pathname'
|
|
|
|
|
2009-09-19 14:04:12 -04:00
|
|
|
class RenderJSTest < ActionController::TestCase
|
|
|
|
class TestController < ActionController::Base
|
|
|
|
protect_from_forgery
|
2009-05-13 20:00:36 -04:00
|
|
|
|
2009-09-19 14:04:12 -04:00
|
|
|
def self.controller_path
|
|
|
|
'test'
|
|
|
|
end
|
|
|
|
|
|
|
|
def render_vanilla_js_hello
|
|
|
|
render :js => "alert('hello')"
|
|
|
|
end
|
|
|
|
|
|
|
|
def show_partial
|
|
|
|
render :partial => 'partial'
|
|
|
|
end
|
2009-05-13 20:00:36 -04:00
|
|
|
end
|
|
|
|
|
2009-05-22 20:07:40 -04:00
|
|
|
tests TestController
|
|
|
|
|
2009-05-13 20:00:36 -04:00
|
|
|
def test_render_vanilla_js
|
|
|
|
get :render_vanilla_js_hello
|
|
|
|
assert_equal "alert('hello')", @response.body
|
|
|
|
assert_equal "text/javascript", @response.content_type
|
|
|
|
end
|
2009-09-19 14:04:12 -04:00
|
|
|
|
2009-05-13 20:00:36 -04:00
|
|
|
def test_should_render_js_partial
|
2009-08-15 01:32:40 -04:00
|
|
|
xhr :get, :show_partial, :format => 'js'
|
2009-05-13 20:00:36 -04:00
|
|
|
assert_equal 'partial js', @response.body
|
2009-08-15 01:32:40 -04:00
|
|
|
end
|
2009-09-19 14:04:12 -04:00
|
|
|
end
|