X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/c65b1e11059c5cf510b54c785d4a246215058f70..57886e0afdac6da60651284daee1e088feb14537:/test/functional/election_controller_test.rb diff --git a/test/functional/election_controller_test.rb b/test/functional/election_controller_test.rb index 1873304..52b16d5 100644 --- a/test/functional/election_controller_test.rb +++ b/test/functional/election_controller_test.rb @@ -1,88 +1,19 @@ 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 - - def test_index - get :index - assert_response :success - assert_template 'list' - end - - def test_list - get :list - - assert_response :success - assert_template 'list' - - assert_not_nil assigns(:elections) - end - - def test_show - get :show, :id => 1 - - assert_response :success - assert_template 'show' - - assert_not_nil assigns(:election) - assert assigns(:election).valid? - end - - def test_new - get :new - - assert_response :success - assert_template 'new' - - assert_not_nil assigns(:election) - end - - def test_create - num_elections = Election.count - - post :create, :election => {} - - assert_response :redirect - assert_redirected_to :action => 'list' - - assert_equal num_elections + 1, Election.count - end - - def test_edit - get :edit, :id => 1 - - assert_response :success - assert_template 'edit' - - assert_not_nil assigns(:election) - assert assigns(:election).valid? - end - - def test_update - post :update, :id => 1 - assert_response :redirect - assert_redirected_to :action => 'show', :id => 1 - end - - def test_destroy - assert_not_nil Election.find(1) - - post :destroy, :id => 1 - assert_response :redirect - assert_redirected_to :action => 'list' - - assert_raise(ActiveRecord::RecordNotFound) { - Election.find(1) - } + def test_true + #Make rake happy when empty + assert true end end