Sha256: 36269fa0c153aafe32d73f8cf2cede1865b58d13fd8e2fa9c7080bd6a247386a

Contents?: true

Size: 482 Bytes

Versions: 1

Compression:

Stored size: 482 Bytes

Contents

require File.dirname(__FILE__) + '/../test_helper'
require 'render_controller'

# Re-raise errors caught by the controller.
class RenderController; def rescue_action(e) raise e end; end

class RenderControllerTest < Test::Unit::TestCase
  def setup
    @controller = RenderController.new
    @request    = ActionController::TestRequest.new
    @response   = ActionController::TestResponse.new
  end

  # Replace this with your real tests.
  def test_truth
    assert true
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
compages-0.4.0 test/functional/render_controller_test.rb