updated db schema
[selectricity] / test / functional / election_controller_test.rb
1 require File.dirname(__FILE__) + '/../test_helper'
2 require 'election_controller'
3
4 # Re-raise errors caught by the controller.
5 class ElectionController; def rescue_action(e) raise e end; end
6
7 class ElectionControllerTest < Test::Unit::TestCase
8   fixtures :elections
9
10   def setup
11     @controller = ElectionController.new
12     @request    = ActionController::TestRequest.new
13     @response   = ActionController::TestResponse.new
14   end
15   def test_true
16     #Make rake happy when empty
17     assert true
18   end
19 end

Benjamin Mako Hill || Want to submit a patch?