Sha256: 320545e533fb798e7460e70062c76db2a801d8d414dd05e6d9687fb69a6b7758
Contents?: true
Size: 1.17 KB
Versions: 15
Compression:
Stored size: 1.17 KB
Contents
require 'test_helper' class <%= controller_class_name %>ControllerTest < ActionController::TestCase 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 => <%= table_name %>(:one).id assert_response :success end def test_should_get_edit get :edit, :id => <%= table_name %>(:one).id assert_response :success end def test_should_update_<%= file_name %> put :update, :id => <%= table_name %>(:one).id, :<%= 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 => <%= table_name %>(:one).id end assert_redirected_to <%= table_name %>_path end end
Version data entries
15 entries across 15 versions & 8 rubygems