Sha256: 8c706b023536b872c0012b976e455ddd2faf5083bf159846c96ea21525cfdd4e

Contents?: true

Size: 744 Bytes

Versions: 2

Compression:

Stored size: 744 Bytes

Contents

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
activejob-lock-0.0.2 rails/actionpack/test/controller/render_js_test.rb
activejob-lock-0.0.1 rails/actionpack/test/controller/render_js_test.rb