require File.dirname(__FILE__) + '/../test_helper'
-require 'elections_controller'
+require 'election_controller'
# Re-raise errors caught by the controller.
-class ElectionsController; def rescue_action(e) raise e end; end
+class ElectionController; def rescue_action(e) raise e end; end
-class ElectionsControllerTest < Test::Unit::TestCase
+class ElectionControllerTest < Test::Unit::TestCase
fixtures :elections
def setup
- @controller = ElectionsController.new
+ @controller = ElectionController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
end