1 require File.dirname(__FILE__) + '/../test_helper'
2 require 'voter_controller'
4 # Re-raise errors caught by the controller.
5 class VoterController; def rescue_action(e) raise e end; end
7 class VoterControllerTest < Test::Unit::TestCase
9 @controller = VoterController.new
10 @request = ActionController::TestRequest.new
11 @response = ActionController::TestResponse.new
14 # Replace this with your real tests.