aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb
blob: 823b21a4b3191136589ac1967dd45cf0fa4cb25f (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                    
 

                                                                             



                            
                                              





                            
 
                                         


                                                   
 











                                                                          
 



                                                                          
 
                                          


                                                       
 


                                               
require File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../test_helper'

class <%= controller_class_name %>ControllerTest < ActionController::TestCase
  tests <%= controller_class_name %>Controller

  def test_should_get_index
    get :index
    assert_response :success
    assert_not_nil assigns(:<%= table_name %>)
  end

  def test_should_get_new
    get :new
    assert_response :success
  end

  def test_should_create_<%= file_name %>
    assert_difference('<%= class_name %>.count') do
      post :create, :<%= file_name %> => { }
    end

    assert_redirected_to <%= file_name %>_path(assigns(:<%= file_name %>))
  end

  def test_should_show_<%= file_name %>
    get :show, :id => 1
    assert_response :success
  end

  def test_should_get_edit
    get :edit, :id => 1
    assert_response :success
  end

  def test_should_update_<%= file_name %>
    put :update, :id => 1, :<%= file_name %> => { }
    assert_redirected_to <%= file_name %>_path(assigns(:<%= file_name %>))
  end

  def test_should_destroy_<%= file_name %>
    assert_difference('<%= class_name %>.count', -1) do
      delete :destroy, :id => 1
    end

    assert_redirected_to <%= table_name %>_path
  end
end