#--- # Excerpted from "Agile Web Development with Rails, 2nd Ed." # We make no guarantees that this code is fit for any purpose. # Visit http://www.pragmaticprogrammer.com/titles/rails2 for more book information. #--- require File.dirname(__FILE__) + '/../test_helper' require 'info_controller' # Re-raise errors caught by the controller. class InfoController; def rescue_action(e) raise e end; end class InfoControllerTest < Test::Unit::TestCase def setup @controller = InfoController.new @request = ActionController::TestRequest.new @response = ActionController::TestResponse.new end # Replace this with your real tests. def test_truth assert true end end